Skip to content

Commit

Permalink
Release 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe committed Apr 19, 2021
1 parent 5233fbe commit 7a49665
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sbt clean assembly

## Release Notes

### Unreleased
### 1.9.1
- remove backup api at GET /database/backup
- change method from GET to POST on /api/v3/plugins/database/backup
- backup endpoint is secure by default, and requires an api token for a user with admin rights
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ val ScalatraVersion = "2.7.1"

organization := "fr.brouillard.gitbucket"
name := "gitbucket-h2-backup-plugin"
version := "1.9.0"
version := "1.9.1"
scalaVersion := "2.13.5"
gitbucketVersion := "4.35.3"
scalacOptions += "-deprecation"
Expand Down
3 changes: 2 additions & 1 deletion src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class Plugin extends gitbucket.core.plugin.Plugin {
new Version("1.6.0"),
new Version("1.7.0"),
new Version("1.8.0"),
new Version("1.9.0"))
new Version("1.9.0"),
new Version("1.9.1"))

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

0 comments on commit 7a49665

Please sign in to comment.