From f0f4b8faa60d1f3bdcd2e3461755607ae5d7a46f Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Tue, 1 May 2018 01:41:52 +0900 Subject: [PATCH] Bump to GitBucket 4.24.1 --- CHANGELOG.md | 3 +++ README.md | 3 +++ build.sbt | 2 +- src/main/scala/gitbucket/core/GitBucketCoreModule.scala | 3 ++- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19808249c..e83c5da9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to the project will be documented in this file. +### 4.24.1 - 1 May 2018 +- Fix bug in Web API authentication + ### 4.24.0 - 30 Apr 2018 - Diff for each review comment on pull requests - Extra mail addresses support diff --git a/README.md b/README.md index 43be7645d..acf902029 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,9 @@ Support What's New in 4.24.x ------------- +### 4.24.1 - 1 May 2018 +- Fix bug in Web API authentication + ### 4.24.0 - 30 Apr 2018 - Diff for each review comment on pull requests - Extra mail addresses support diff --git a/build.sbt b/build.sbt index 98b6a4e97..7517ca794 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.24.0" +val GitBucketVersion = "4.24.1" val ScalatraVersion = "2.6.1" val JettyVersion = "9.4.7.v20170914" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 8b58e07c1..24885e4d0 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -52,5 +52,6 @@ object GitBucketCoreModule new Version("4.22.0", new LiquibaseMigration("update/gitbucket-core_4.22.xml")), new Version("4.23.0", new LiquibaseMigration("update/gitbucket-core_4.23.xml")), new Version("4.23.1"), - new Version("4.24.0", new LiquibaseMigration("update/gitbucket-core_4.24.xml")) + new Version("4.24.0", new LiquibaseMigration("update/gitbucket-core_4.24.xml")), + new Version("4.24.1") )