From e3c36c2a6239dd869962c993582d83d6f468053b Mon Sep 17 00:00:00 2001 From: onukura <26293997+onukura@users.noreply.github.com> Date: Thu, 17 Dec 2020 13:13:46 +0900 Subject: [PATCH] bump gitbucket to 4.35.0 --- README.MD | 1 + build.sbt | 6 +++--- project/build.properties | 2 +- src/main/scala/Plugin.scala | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.MD b/README.MD index b72aac0..5216ba1 100644 --- a/README.MD +++ b/README.MD @@ -45,6 +45,7 @@ On success, you will receive a `HTTP 200` answer with a body containing `done: F Plugin version | GitBucket version :--------------|:----------------- +1.9.x | >= 4.35.y 1.8.x | >= 4.32.y 1.7.x | >= 4.26.y 1.6.x | >= 4.21.y diff --git a/build.sbt b/build.sbt index ec13e6a..e880e49 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ organization := "fr.brouillard.gitbucket" name := "gitbucket-h2-backup-plugin" -version := "1.8.0" -scalaVersion := "2.13.0" -gitbucketVersion := "4.32.0" +version := "1.9.0" +scalaVersion := "2.13.1" +gitbucketVersion := "4.35.0" scalacOptions += "-deprecation" diff --git a/project/build.properties b/project/build.properties index 7609b47..efae80e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.2.8 \ No newline at end of file +sbt.version = 1.4.4 \ No newline at end of file diff --git a/src/main/scala/Plugin.scala b/src/main/scala/Plugin.scala index 41e65e0..b8850b1 100644 --- a/src/main/scala/Plugin.scala +++ b/src/main/scala/Plugin.scala @@ -19,7 +19,8 @@ class Plugin extends gitbucket.core.plugin.Plugin { new Version("1.5.1"), new Version("1.6.0"), new Version("1.7.0"), - new Version("1.8.0")) + new Version("1.8.0"), + new Version("1.9.0")) override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq( (ctx: Context) => Some(Link("h2-backup", "H2 Backup", "admin/h2backup"))