From 6405d84a0a495aa929d8bbbc8f3f749d44be595c Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Thu, 26 Aug 2021 01:28:48 +0900 Subject: [PATCH] Release 1.10.0 --- README.md | 1 + build.sbt | 4 ++-- project/build.properties | 2 +- src/main/scala/Plugin.scala | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d6249a9..28e0748 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ version please follow the instruction below** | pages version | gitbucket version | | :---: | :---: | +| 1.10.0 | 4.36.0 | | 1.9.0 | 4.35.0 | | 1.8.0 | 4.32.0 | | 1.7.0 | 4.23.0 | diff --git a/build.sbt b/build.sbt index b29ed5f..6d57fb0 100644 --- a/build.sbt +++ b/build.sbt @@ -1,8 +1,8 @@ organization := "gitbucket" name := "gitbucket-pages-plugin" scalaVersion := "2.13.5" -version := "1.9.0" -gitbucketVersion := "4.35.3" +version := "1.10.0" +gitbucketVersion := "4.36.2" scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8", "-feature") scalafmtOnCompile := true diff --git a/project/build.properties b/project/build.properties index e67343a..10fd9ee 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.0 +sbt.version=1.5.5 diff --git a/src/main/scala/Plugin.scala b/src/main/scala/Plugin.scala index 2a45f9a..1f7f207 100644 --- a/src/main/scala/Plugin.scala +++ b/src/main/scala/Plugin.scala @@ -34,7 +34,8 @@ class Plugin extends gitbucket.core.plugin.Plugin { new Version("1.7.0"), new Version("1.7.1"), new Version("1.8.0"), - new Version("1.9.0") + new Version("1.9.0"), + new Version("1.10.0") ) override val controllers: Seq[(String, ControllerBase)] = Seq("/*" -> new PagesController)