GitBucket 3.5.0 release

This commit is contained in:
Naoki Takezoe
2015-08-01 01:24:35 +09:00
parent 77b3650580
commit 836fa47812
3 changed files with 9 additions and 2 deletions

View File

@@ -81,6 +81,12 @@ Run the following commands in `Terminal` to
Release Notes 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 ### 3.4 - 27 Jun 2015
- Declarative style plug-in definition - Declarative style plug-in definition
- New extension point to add markup render - New extension point to add markup render

View File

@@ -10,7 +10,7 @@ import sbtassembly.AssemblyKeys._
object MyBuild extends Build { object MyBuild extends Build {
val Organization = "gitbucket" val Organization = "gitbucket"
val Name = "gitbucket" val Name = "gitbucket"
val Version = "3.5.0-SNAPSHOT" val Version = "3.5.0"
val ScalaVersion = "2.11.6" val ScalaVersion = "2.11.6"
val ScalatraVersion = "2.3.1" val ScalatraVersion = "2.3.1"

View File

@@ -21,6 +21,7 @@ object AutoUpdate {
* The history of versions. A head of this sequence is the current BitBucket version. * The history of versions. A head of this sequence is the current BitBucket version.
*/ */
val versions = Seq( val versions = Seq(
new Version(3, 5),
new Version(3, 4), new Version(3, 4),
new Version(3, 3), new Version(3, 3),
new Version(3, 2), new Version(3, 2),
@@ -166,4 +167,4 @@ object AutoUpdate {
} else Version(0, 0) } else Version(0, 0)
} }
} }