diff --git a/README.md b/README.md index f5a4360..2a2cd13 100644 --- a/README.md +++ b/README.md @@ -85,10 +85,15 @@ ssh-keyscan -t ssh-rsa github.com >> ~/.ssh/known_hosts Plugin version | GitBucket version :--------------|:----------------- +1.1.x - | 4.32.x - 1.0.x - | 4.20.x - ## Release Notes +### 1.1.0 + +- Bump to GItBucket 4.32.0. + ### 1.0.2 - Add SSH protocol support. diff --git a/build.sbt b/build.sbt index 95abbb2..2910c28 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "gitbucket-mirror-plugin" organization := "io.github.gitbucket" -version := "1.0.2" +version := "1.1.0" scalaVersion := "2.13.0" gitbucketVersion := "4.32.0" diff --git a/src/main/scala/Plugin.scala b/src/main/scala/Plugin.scala index 6d80370..d2715aa 100644 --- a/src/main/scala/Plugin.scala +++ b/src/main/scala/Plugin.scala @@ -14,7 +14,8 @@ class Plugin extends gitbucket.core.plugin.Plugin { override val versions: List[Version] = List( new Version("1.0.0", new LiquibaseMigration("update/gitbucket-mirror_1.0.0.xml")), new Version("1.0.1"), - new Version("1.0.2") + new Version("1.0.2"), + new Version("1.1.0") ) override val assetsMappings = Seq("/mirror" -> "/gitbucket/mirror/assets")