Skip to content

Commit

Permalink
gitbucket 4.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jyuch committed Sep 10, 2018
1 parent faf93b6 commit 67bc523
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,6 @@ For more details, see [External database configuration](https://github.com/gitbu

|Plugin version|GitBucket version|
|:-:|:-|
|1.1.0|4.28|
|1.0.0|4.27|
|1.0.0-RC1|4.27|
3 changes: 2 additions & 1 deletion README_jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ SELECT setval('priority_priority_id_seq', (select max(priority_id) + 1 from prio
## 各バージョンのGitBucketとの互換性

|プラグインバージョン|GitBucketバージョン|
|:-:|:-|
|:-:|:
|1.1.0|4.28|
|1.0.0|4.27|
|1.0.0-RC1|4.27|
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name := "gitbucket-backup-plugin"
organization := "io.github.gitbucket"
version := "1.0.0"
version := "1.1.0"
scalaVersion := "2.12.6"
gitbucketVersion := "4.27.0"
gitbucketVersion := "4.28.0"

libraryDependencies ++= Seq(
"org.zeroturnaround" % "zt-zip" % "1.13",
Expand Down
4 changes: 3 additions & 1 deletion src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class Plugin extends gitbucket.core.plugin.Plugin with ActorService {
override val pluginId: String = "backup"
override val pluginName: String = "Backup Plugin"
override val description: String = "Provide all in one backup features for GitBucket"
override val versions: List[Version] = List(new Version("1.0.0"))
override val versions: List[Version] = List(
new Version("1.0.0"),
new Version("1.1.0"))

private val logger = LoggerFactory.getLogger(classOf[Plugin])

Expand Down

0 comments on commit 67bc523

Please sign in to comment.