Skip to content

Commit cb0a070

Browse files
committed
bump version number
1 parent b67c5df commit cb0a070

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ On success, you will receive a `HTTP 200` answer with a body containing `done: F
4545

4646
Plugin version | GitBucket version
4747
:--------------|:-----------------
48+
1.5.x | >= 4.11.y
4849
1.4.x | >= 4.10.y
4950
1.3.x | >= 4.3.y
5051
1.2.x | 4.x.y
@@ -64,6 +65,9 @@ sbt clean package
6465

6566
## Release Notes
6667

68+
### 1.5.0
69+
- compatibility with gitbucket 4.11.0 and scala 2.12
70+
6771
### 1.4.0
6872

6973
- compatibility with gitbucket 4.10, scala 2.12 [#20](https://github.com/gitbucket-plugins/gitbucket-h2-backup-plugin/issues/20)

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
val Organization = "fr.brouillard.gitbucket"
22
val ProjectName = "gitbucket-h2-backup-plugin"
3-
val ProjectVersion = "1.4.0"
3+
val ProjectVersion = "1.5.0"
44

55
lazy val h2_backup_plugin = (project in file(".")).enablePlugins(SbtTwirl)
66

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1515
new Version("1.0.0"),
1616
new Version("1.2.0"),
1717
new Version("1.3.0"),
18-
new Version("1.4.0")
18+
new Version("1.4.0"),
19+
new Version("1.5.0")
1920
)
2021

2122
override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(

0 commit comments

Comments
 (0)