From ea498f269eb619e91bc44e8ad27b7e3625f84f40 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Sat, 25 Feb 2017 06:13:57 +0900 Subject: [PATCH] 4.10 release --- README.md | 4 ++++ build.sbt | 2 +- src/main/scala/gitbucket/core/GitBucketCoreModule.scala | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65e6bbe56..d8cf078e0 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,10 @@ Support 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 52a038db0..158f6f6a9 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 5bfe8153e..4b9c486c3 100644 --- a/src/main/scala/gitbucket/core/GitBucketCoreModule.scala +++ b/src/main/scala/gitbucket/core/GitBucketCoreModule.scala @@ -27,5 +27,6 @@ object GitBucketCoreModule extends Module("gitbucket-core", new Version("4.8"), new Version("4.9.0", new LiquibaseMigration("update/gitbucket-core_4.9.xml") - ) + ), + new Version("4.10.0") )