Skip to content

Commit 67d5cd1

Browse files
authored
Support GitBucket 4.37.x (#23)
1 parent 52cc881 commit 67d5cd1

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This plug-in provides notifications feature on GitBucket.
44

55
Plugin version | GitBucket version
66
:--------------|:--------------------
7+
1.11.x | 4.37.x
78
1.10.x | 4.35.x
89
1.9.x | 4.34.x
910
1.8.x | 4.32.x - 4.33.x

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "gitbucket-notifications-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.10.0"
4-
scalaVersion := "2.13.5"
5-
gitbucketVersion := "4.35.3"
3+
version := "1.11.0"
4+
scalaVersion := "2.13.7"
5+
gitbucketVersion := "4.37.0"
66
scalacOptions := Seq("-deprecation", "-language:postfixOps", "-feature")

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.0
1+
sbt.version=1.5.6

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
3535
new Version("1.7.1"),
3636
new Version("1.8.0"),
3737
new Version("1.9.0"),
38-
new Version("1.10.0")
38+
new Version("1.10.0"),
39+
new Version("1.11.0")
3940
)
4041

4142
override val controllers = Seq(

0 commit comments

Comments
 (0)