Skip to content

Commit 1dfee24

Browse files
committed
release v1.0.3
1 parent bd7474d commit 1dfee24

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ Download a jar file and put into `GITBUCKET_HOME/plugins` and then restart GitBu
2525
Release
2626
---
2727

28+
### 1.0.2 - 16 Feb 2017
29+
30+
- (bugfix) No redirect to css on deny anonymous access
31+
2832
### 1.0.2 - 15 Feb 2017
2933

3034
- Fixed some bugs

build.sbt

+1-1
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.2"
3+
version := "1.0.3"
44
scalaVersion := "2.11.8"
55

66
resolvers ++= Seq(

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gitbucket-explorer-plugin",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/main/scala/Plugin.scala

+1-1
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"), new Version("1.0.1"), new Version("1.0.2"))
15+
override val versions: List[Version] = List(new Version("1.0.0"), new Version("1.0.1"), new Version("1.0.2"), new Version("1.0.3"))
1616

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

0 commit comments

Comments
 (0)