diff --git a/README.md b/README.md index 46ddfbf..a2b6586 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,12 @@ Release Notes ------------- +### 4.4 - 28 Aug 2016 +- Import a SQL dump file to the database +- `go get` support in private repositories +- Sort milestones by due date +- apache-sshd has been updated to 1.2.0 + ### 4.3 - 30 Jul 2016 - Emoji support by [gitbucket-emoji-plugin](https://github.com/gitbucket/gitbucket-emoji-plugin) - User name suggestion diff --git a/build.sbt b/build.sbt index 6cbf944..e49451b 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.3.0" +val GitBucketVersion = "4.4.0" val ScalatraVersion = "2.4.1" val JettyVersion = "9.3.9.v20160517" diff --git a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala index 4d71888..d1685ba 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -13,5 +13,6 @@ new LiquibaseMigration("update/gitbucket-core_4.2.xml") ), new Version("4.2.1"), - new Version("4.3.0") + new Version("4.3.0"), + new Version("4.4.0") )