diff --git a/README.md b/README.md index 08d3d0d..6ae3156 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,11 @@ What's New in 4.19.x ------------- +### 4.19.2 - 3 Dec 2017 + +- Fix routing bug in `CompositeScalatraFilter` +- Resolve id attribute collision in the web hook editing form + ### 4.19.1 - 2 Dec 2017 - Update gitbucket-notifications-plugin because it had a version compatibility issue diff --git a/build.sbt b/build.sbt index 070feb2..c12d999 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.19.1" +val GitBucketVersion = "4.19.2" 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 10fb306..df79062 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -45,5 +45,6 @@ new Version("4.17.0"), new Version("4.18.0"), new Version("4.19.0"), - new Version("4.19.1") + new Version("4.19.1"), + new Version("4.19.2") )