diff --git a/README.md b/README.md index 08d3d0dd3..6ae3156b7 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,11 @@ Support 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 070feb27e..c12d999a7 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.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 10fb306f7..df79062d4 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -45,5 +45,6 @@ object GitBucketCoreModule extends Module("gitbucket-core", 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") )