Skip to content

Commit 011b2e5

Browse files
committed
v1.1.0
1 parent 0d43dd6 commit 011b2e5

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ Goto the `System Administration` menu, you can see `Monitoring` section.
4040

4141
|Plugin version|GitBucket version|
4242
|:-------------:|:-------:|
43-
|1.0.0|4.10, 4.11, 4.12.x, 4.13, 4.14.x, 4.15.0, 4.16.0, 4.17.0, 4.18.0|
43+
|1.1.0|4.10 - 4.19.x|
44+
|1.0.0|4.10 - 4.19.x|
4445

4546
# Supported OS
4647

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
val Name = "gitbucket-monitorting-plugin"
22
val Organization = "com.github.YoshinoriN"
3-
val Version = "1.0.0"
3+
val Version = "1.1.0"
44

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

src/main/scala/Plugin.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1111
override val pluginId: String = "monitoring"
1212
override val pluginName: String = "Monitoring Plugin"
1313
override val description: String = "Display machine information, resources, processes, Java information and GitBucket's log."
14-
override val versions: List[Version] = List(new Version("1.0.0"))
14+
override val versions: List[Version] = List(
15+
new Version("1.0.0"),
16+
new Version("1.1.0")
17+
)
1518

1619
override val systemSettingMenus: Seq[(Context) => Option[Link]] = Seq(
1720
(context: Context) => Some(Link("monitoring", "Monitoring", "admin/monitoring"))

0 commit comments

Comments
 (0)