Skip to content

Commit 03e8d2d

Browse files
committed
release 1.0.1
1 parent 50afdb5 commit 03e8d2d

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Version
1010

1111
Plugin version|GitBucket version
1212
:---|:---
13-
1.0.0|4.9+
13+
1.0.x|4.9+
1414

1515
Download
1616
---
@@ -20,4 +20,15 @@ You can download a jar file from the [Release](https://github.com/tomoki1207/git
2020
Installation
2121
---
2222

23-
Download a jar file and put into `GITBUCKET_HOME/plugins` and then restart GitBucket.
23+
Download a jar file and put into `GITBUCKET_HOME/plugins` and then restart GitBucket.
24+
25+
Release
26+
---
27+
28+
### 1.0.1 - 8 Jan 2017
29+
30+
- Display tree of selected branch
31+
32+
### 1.0.0 - 6 Jan 2017
33+
34+
- first release

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "gitbucket-explorer-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.0.0"
3+
version := "1.0.1"
44
scalaVersion := "2.11.8"
55

66
libraryDependencies ++= Seq(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitbucket-explorer-plugin",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/main/scala/Plugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Plugin extends gitbucket.core.plugin.Plugin {
1212
override val pluginId: String = "explorer"
1313
override val pluginName: String = "Project explorer Plugin"
1414
override val description: String = "Explore Files from the file tree in the repository"
15-
override val versions: List[Version] = List(new Version("1.0.0"))
15+
override val versions: List[Version] = List(new Version("1.0.0"), new Version("1.0.1"))
1616

1717
override val controllers = Seq(
1818
"/*" -> new ExplorerController()

0 commit comments

Comments
 (0)