Skip to content

Commit 7a49665

Browse files
committed
Release 1.9.1
1 parent 5233fbe commit 7a49665

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.MD

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ sbt clean assembly
8383

8484
## Release Notes
8585

86-
### Unreleased
86+
### 1.9.1
8787
- remove backup api at GET /database/backup
8888
- change method from GET to POST on /api/v3/plugins/database/backup
8989
- backup endpoint is secure by default, and requires an api token for a user with admin rights

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ val ScalatraVersion = "2.7.1"
22

33
organization := "fr.brouillard.gitbucket"
44
name := "gitbucket-h2-backup-plugin"
5-
version := "1.9.0"
5+
version := "1.9.1"
66
scalaVersion := "2.13.5"
77
gitbucketVersion := "4.35.3"
88
scalacOptions += "-deprecation"

src/main/scala/Plugin.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
2020
new Version("1.6.0"),
2121
new Version("1.7.0"),
2222
new Version("1.8.0"),
23-
new Version("1.9.0"))
23+
new Version("1.9.0"),
24+
new Version("1.9.1"))
2425

2526
override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
2627
(ctx: Context) => Some(Link("h2-backup", "H2 Backup", "admin/h2backup"))

0 commit comments

Comments
 (0)