diff --git a/README.md b/README.md index 65e6bbe..d8cf078 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,10 @@ Release Notes ------------- +### 4.10 - 25 Feb 2017 +- Update to Scala 2.12 and Scalatra 2.5 +- Display file size in the file viewer + ### 4.9 - 29 Jan 2017 - GitLFS support - Template for issues and pull requests diff --git a/build.sbt b/build.sbt index 52a038d..158f6f6 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ val Organization = "io.github.gitbucket" val Name = "gitbucket" -val GitBucketVersion = "4.9.0" +val GitBucketVersion = "4.10.0" val ScalatraVersion = "2.5.0" 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 5bfe815..4b9c486 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -27,5 +27,6 @@ new Version("4.8"), new Version("4.9.0", new LiquibaseMigration("update/gitbucket-core_4.9.xml") - ) + ), + new Version("4.10.0") )