diff --git a/CHANGELOG.md b/CHANGELOG.md index fe80b82..022bb29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All changes to the project will be documented in this file. +### 4.30.1 - 22 Dec 2018 +- Bug fix for several WebHooks and Web API + ## 4.30.0 - 15 Dec 2018 - Automatic ChangeLog Summary generation for new Releases - A lot of GitBucket Web API updates to increase compatibility with the GitHub API. diff --git a/README.md b/README.md index b907231..27ab5af 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,9 @@ What's New in 4.30.x ------------- +### 4.30.1 - 22 Dec 2018 +- Bug fix for several WebHooks and Web API + ### 4.30.0 - 15 Dec 2018 - Automatic ChangeLog Summary generation for new Releases - A lot of GitBucket Web API updates to increase compatibility with the GitHub API. diff --git a/build.sbt b/build.sbt index ba2444d..1f19702 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.30.0" +val GitBucketVersion = "4.30.1" val ScalatraVersion = "2.6.3" val JettyVersion = "9.4.14.v20181114" val JgitVersion = "5.1.3.201810200350-r" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 65b58dc..d88cdea 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -59,5 +59,6 @@ new Version("4.27.0", new LiquibaseMigration("update/gitbucket-core_4.27.xml")), new Version("4.28.0"), new Version("4.29.0"), - new Version("4.30.0") + new Version("4.30.0"), + new Version("4.30.1") )