From f4932ab88e2c88a080ce28b85f59a251ff06368d Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Wed, 30 Dec 2015 01:18:13 +0900 Subject: [PATCH] 3.10 release --- README.md | 6 ++++++ project/build.scala | 2 +- src/main/scala/gitbucket/core/servlet/AutoUpdate.scala | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c26578d52..4e11726d4 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,12 @@ Support Release Notes -------- +### 3.10 - 30 Dec 2015 +- Move to Bootstrap3 +- New URL for raw contents (`raw/master/doc/activity.md` instead of `blob/master/doc/activity.md?raw=true`) +- Update xsbt-web-pligin +- Update H2 database + ### 3.9 - 5 Dec 2015 - GFM inline breaks support in Markdown - WebHook on create review comment is available diff --git a/project/build.scala b/project/build.scala index a6582dfd1..ff52ed2c7 100644 --- a/project/build.scala +++ b/project/build.scala @@ -9,7 +9,7 @@ import JettyPlugin.autoImport._ object MyBuild extends Build { val Organization = "gitbucket" val Name = "gitbucket" - val Version = "3.9.1" + val Version = "3.10.0" val ScalaVersion = "2.11.6" val ScalatraVersion = "2.3.1" diff --git a/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala b/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala index 77ee78efc..c8987fb38 100644 --- a/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala +++ b/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala @@ -21,6 +21,7 @@ object AutoUpdate { * The history of versions. A head of this sequence is the current BitBucket version. */ val versions = Seq( + new Version(3, 10), new Version(3, 9), new Version(3, 8), new Version(3, 7) with SystemSettingsService {