GitBucket 3.4 release

This commit is contained in:
Naoki Takezoe
2015-06-27 10:12:25 +09:00
parent 19f79b6e54
commit 14d0c4dc32
4 changed files with 16 additions and 8 deletions

View File

@@ -6,15 +6,17 @@ Update version number
Note to update version number in files below:
### project/build.scala
### src/main/scala/gitbucket/core/servlet/AutoUpdate.scala
```scala
object MyBuild extends Build {
val Organization = "gitbucket"
val Name = "gitbucket"
val Version = "3.2.0" // <---- update here!!
val ScalaVersion = "2.11.6"
val ScalatraVersion = "2.3.1"
object AutoUpdate {
/**
* The history of versions. A head of this sequence is the current BitBucket version.
*/
val versions = Seq(
new Version(3, 3), # <---- add this line!!
new Version(3, 2),
```
### env.sh