diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c438fa..ee4608b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All changes to the project will be documented in this file. +### 4.35.1 - 29 Dec 2020 +- Fix database migration issue which happens if webhook is configured +- Call push webhook when pull request is merged +- Show commit status at commits tab of pull request + ### 4.35.0 - 25 Dec 2020 - Editor and source viewer color theme - Auto completion for issues and pull requests diff --git a/README.md b/README.md index 9637dbc..92c8885 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,14 @@ - If you can't find same question and report, send it to [gitter room](https://gitter.im/gitbucket/gitbucket) before raising an issue. - The highest priority of GitBucket is the ease of installation and API compatibility with GitHub, so your feature request might be rejected if they go against those principles. -What's New in 4.34.x +What's New in 4.35.x ------------- +### 4.35.1 - 29 Dec 2020 + +- Fix database migration issue which happens if webhook is configured +- Call push webhook when pull request is merged +- Show commit status at commits tab of pull request + ### 4.35.0 - 25 Dec 2020 - Editor and source viewer color theme diff --git a/build.sbt b/build.sbt index da78163..f1c1a76 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.35.0" +val GitBucketVersion = "4.35.1" val ScalatraVersion = "2.7.1" val JettyVersion = "9.4.32.v20200930" val JgitVersion = "5.9.0.202009080501-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 0e2a15b..6a7194f 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -115,4 +115,5 @@ new LiquibaseMigration("update/gitbucket-core_4.34.xml") ), new Version("4.35.0", new LiquibaseMigration("update/gitbucket-core_4.35.xml")), + new Version("4.35.1"), )