From b70a46114cff5e348661ea7b2bb9231526c592db Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 1 Sep 2018 09:10:33 +0900 Subject: [PATCH] GitBucket 4.28.0 release --- CHANGELOG.md | 4 ++++ README.md | 9 ++++----- build.sbt | 2 +- src/main/scala/gitbucket/core/GitBucketCoreModule.scala | 3 ++- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66987e431..33e650998 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 25f4c3306..09e63553e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/build.sbt b/build.sbt index 8d267878d..e07854fb8 100644 --- a/build.sbt +++ b/build.sbt @@ -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" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index c0345f472..1e60a72ea 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -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") )