Skip to content

Commit 315bac7

Browse files
committed
Support GitBucket 4.37.x
1 parent 9a81964 commit 315bac7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ This is a GitBucket plug-in which provides code snippet repository like Gist.
44

55
Plugin version | GitBucket version
66
:--------------|:--------------------
7+
4.22.x | 4.37.x -
78
4.21.x | 4.36.x -
89
4.20.x | 4.35.x -
910
4.19.x | 4.34.x -

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
organization := "io.github.gitbucket"
22
name := "gitbucket-gist-plugin"
3-
version := "4.21.0"
3+
version := "4.22.0"
44
scalaVersion := "2.13.5"
5-
gitbucketVersion := "4.36.0"
5+
gitbucketVersion := "4.37.0"
66

77
scalacOptions := Seq("-deprecation", "-feature", "-language:postfixOps")
88
Compile / javacOptions ++= Seq("-target", "8", "-source", "8")

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
4343
new Version("4.18.0"),
4444
new Version("4.19.0"),
4545
new Version("4.20.0"),
46-
new Version("4.21.0")
46+
new Version("4.21.0"),
47+
new Version("4.22.0")
4748
)
4849

4950
override def initialize(registry: PluginRegistry, context: ServletContext, settings: SystemSettings): Unit = {

0 commit comments

Comments
 (0)