diff --git a/README.md b/README.md index 0efd4d6..7a48d07 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,12 @@ Release Notes -------- +### 3.5 - 1 Aug 2015 +- Octicons has been applied +- Global header has been enhanced. Now it's further similar to GitHub. +- Default compare / pull request target has been changed to the parent repository +- A lot of updates for [gitbucket-gist-plugin](https://github.com/takezoe/gitbucket-gist-plugin) + ### 3.4 - 27 Jun 2015 - Declarative style plug-in definition - New extension point to add markup render diff --git a/project/build.scala b/project/build.scala index c9ff79b..762c9a7 100644 --- a/project/build.scala +++ b/project/build.scala @@ -10,7 +10,7 @@ object MyBuild extends Build { val Organization = "gitbucket" val Name = "gitbucket" - val Version = "3.5.0-SNAPSHOT" + val Version = "3.5.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 4ff5425..377b219 100644 --- a/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala +++ b/src/main/scala/gitbucket/core/servlet/AutoUpdate.scala @@ -21,6 +21,7 @@ * The history of versions. A head of this sequence is the current BitBucket version. */ val versions = Seq( + new Version(3, 5), new Version(3, 4), new Version(3, 3), new Version(3, 2), @@ -166,4 +167,4 @@ } else Version(0, 0) } -} \ No newline at end of file +}