diff --git a/deploy-assembly/deploy-assembly-jar.sh b/deploy-assembly/deploy-assembly-jar.sh index 26fe0602f..fc5472b78 100755 --- a/deploy-assembly/deploy-assembly-jar.sh +++ b/deploy-assembly/deploy-assembly-jar.sh @@ -6,6 +6,6 @@ mvn deploy:deploy-file \ -DartifactId=gitbucket-assembly\ -Dversion=3.2.0\ -Dpackaging=jar\ - -Dfile=../target/scala-2.11/gitbucket-assembly-3.2.0.jar\ + -Dfile=../target/scala-2.11/gitbucket-assembly-3.3.0.jar\ -DrepositoryId=sourceforge.jp\ -Durl=scp://shell.sourceforge.jp/home/groups/a/am/amateras/htdocs/mvn/ diff --git a/project/build.scala b/project/build.scala index f2f50588a..6279736cb 100644 --- a/project/build.scala +++ b/project/build.scala @@ -10,7 +10,7 @@ import sbtassembly.AssemblyKeys._ object MyBuild extends Build { val Organization = "gitbucket" val Name = "gitbucket" - val Version = "3.2.0" + val Version = "3.3.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 e60ca30fb..138966403 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, 3), new Version(3, 2), new Version(3, 1), new Version(3, 0),