Skip to content

Commit

Permalink
Prepared next release
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Mar 8, 2017
1 parent cc3ac89 commit bd418de
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 7 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
= gitbucket-asciidoctor-plugin
:plugin-version: 1.0.1
:gitbucket-bincompat-version: 4.0
:plugin-version: 1.0.2
:scala-version: 2.12
:gitbucket-bincompat-version: 4.10
:gitbucket-bincompat-version-hyphens: 4-10

image:https://travis-ci.org/asciidoctor/gitbucket-asciidoctor-plugin.svg["Build Status", link="https://travis-ci.org/asciidoctor/gitbucket-asciidoctor-plugin"]
image:https://badges.gitter.im/asciidoctor/gitbucket-asciidoctor-plugin.svg["Gitter Chat", link="https://gitter.im/asciidoctor/gitbucket-asciidoctor-plugin"]
Expand All @@ -20,13 +22,13 @@ You can download a precompiled version from the https://github.com/asciidoctor/g
sbt clean package
----

The built package is located at `target/scala-2.11/gitbucket-{gitbucket-bincompat-version}-asciidoctor-plugin-{plugin-version}.jar`.
The built package is located at `target/scala-{scala-version}/gitbucket-{gitbucket-bincompat-version-hyphens}-asciidoctor-plugin_{scala-version}-{plugin-version}.jar`.

----
sbt assembly
----

This makes the assembly package `target/scala-2.11/gitbucket-{gitbucket-bincompat-version}-asciidoctor-plugin-assembly-{plugin-version}.jar` for deployment.
This makes the assembly package `target/scala-{scala-version}/gitbucket-{gitbucket-bincompat-version}-asciidoctor-plugin-assembly-{plugin-version}.jar` for deployment.


== Installation
Expand All @@ -53,7 +55,7 @@ This plugin is published under the Apache License, version 2.0.

== ChangeLog

=== gitbucket-asciidoctor-plugin 1.0.2 - 2017-03-04
=== gitbucket-asciidoctor-plugin 1.0.2 - 2017-03-08

* Added support to provide attributes to the asciidoctor engine via properties file in gitbucket directory.

Expand Down
5 changes: 4 additions & 1 deletion src/main/scala/Plugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ class Plugin extends gitbucket.core.plugin.Plugin {
override val pluginId: String = "asciidoctor"
override val pluginName: String = "AsciiDoctor Plugin"
override val description: String = "Provides AsciiDoc rendering for GitBucket."
override val versions: List[Version] = List(new Version("1.0.1"))
override val versions: List[Version] = List(
new Version("1.0.1"),
new Version("1.0.2")
)

private[this] var renderer: Option[AsciidoctorRenderer] = None

Expand Down

0 comments on commit bd418de

Please sign in to comment.