Skip to content

Commit a99f5e5

Browse files
committed
Fix version as 3.6.0 according to gitbucket-core
1 parent 2b9b547 commit a99f5e5

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22

33
This is an example of GitBucket plug-in. This plug-in provides code snippet repository like Gist.
44

5-
## Instllation
5+
Plugin version | GitBucket version
6+
:--------------|:-----------------
7+
3.6.x | 3.6.x
8+
9+
10+
## Installation
11+
12+
Download jar file from release page and put into `GITBUCKET_HOME/plugins`.
13+
14+
## Build from source
615

716
1. Hit `./sbt.sh package` in the root directory of this repository.
8-
2. Copy `target/scala-2.11/gitbucket-gist-plugin_2.11-1.3.jar` into `GITBUCKET_HOME/plugins`.
17+
2. Copy `target/scala-2.11/gitbucket-gist-plugin_2.11-x.x.x.jar` into `GITBUCKET_HOME/plugins`.
918
3. Restart GitBucket.

project/build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object MyBuild extends Build {
77

88
val Organization = "jp.sf.amateras"
99
val Name = "gitbucket-gist-plugin"
10-
val Version = "1.3"
10+
val Version = "3.6.0"
1111
val ScalaVersion = "2.11.6"
1212

1313
lazy val project = Project (

src/main/scala/Plugin.scala

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1717
override val description: String = "Provides Gist feature on GitBucket."
1818

1919
override val versions: List[Version] = List(
20+
Version(3, 6),
2021
Version(1, 3),
2122
Version(1, 2),
2223
Version(1, 0)

0 commit comments

Comments
 (0)