Merge pull request #2138 from gitbucket/gitbucket-4.28.0

GitBucket 4.28.0 release
This commit is contained in:
Naoki Takezoe
2018-09-01 09:21:43 +09:00
committed by GitHub
4 changed files with 11 additions and 7 deletions

View File

@@ -1,6 +1,10 @@
# Changelog
All changes to the project will be documented in this file.
### 4.28.0 - 1 Sep 2018
- Proxy support for plugin installation
- Fix some bugs around pull requests
### 4.27.0 - 29 Jul 2018
- Create new tag on the browser
- EditorConfig support

View File

@@ -70,10 +70,9 @@ Support
What's New in 4.27.x
-------------
### 4.27.0 - 29 Jul 2018
- Create new tag on the browser
- EditorConfig support
- Improve issues / pull requests search
- Some improvements and bug fixes for plugin installation via internet and pull request commenting
### 4.28.0 - 1 Sep 2018
- Proxy support for plugin installation
- Fix some bugs around pull requests
See the [change log](CHANGELOG.md) for all of the updates.

View File

@@ -3,7 +3,7 @@ import com.typesafe.sbt.pgp.PgpKeys._
val Organization = "io.github.gitbucket"
val Name = "gitbucket"
val GitBucketVersion = "4.27.0"
val GitBucketVersion = "4.28.0"
val ScalatraVersion = "2.6.3"
val JettyVersion = "9.4.11.v20180605"
val JgitVersion = "5.0.1.201806211838-r"

View File

@@ -56,5 +56,6 @@ object GitBucketCoreModule
new Version("4.24.1"),
new Version("4.25.0", new LiquibaseMigration("update/gitbucket-core_4.25.xml")),
new Version("4.26.0"),
new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml"))
new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml")),
new Version("4.28.0")
)