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

@@ -81,6 +81,11 @@ Run the following commands in `Terminal` to
Release Notes
--------
### 3.4 - 27 Jun 2015
- Declarative style plug-in definition
- New extension point to add markup render
- go-import support
### 3.3 - 31 May 2015
- Rich graphical diff for images
- File finder is available in the repository viewer

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

2
env.sh
View File

@@ -1,2 +1,2 @@
#!/bin/sh
export GITBUCKET_VERSION=3.3.0
export GITBUCKET_VERSION=3.4.0

View File

@@ -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, 4),
new Version(3, 3),
new Version(3, 2),
new Version(3, 1),