We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 468dbe0 commit d9fe603Copy full SHA for d9fe603
src/main/scala/Plugin.scala
@@ -9,7 +9,9 @@ class Plugin extends gitbucket.core.plugin.Plugin {
9
override val pluginId: String = "plantuml_plugin"
10
override val pluginName: String = "PlantUML Plugin"
11
override val description: String = "A plugin renders PlantUML."
12
- override val versions: List[Version] = List(new Version("1.1.0"))
+ override val versions: List[Version] = List(
13
+ new Version("1.0.0"),
14
+ new Version("1.1.0"))
15
16
override def initialize(registry: PluginRegistry, context: ServletContext, settings: SystemSettings): Unit = {
17
val renderer = new PlantUMLRenderer()
0 commit comments