Skip to content

Commit

Permalink
release version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshalm committed Sep 15, 2018
1 parent f4d2ea5 commit fccf530
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ which had been the final release supporting those versions.

Add the plugin to `project/plugins.sbt`:

addSbtPlugin("org.planet42" % "laika-sbt" % "0.8.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.9.0")

Enable the plugin in your project's `build.sbt`:

Expand All @@ -39,7 +39,7 @@ in `target/docs/site`.

Adding the Laika dependency to your sbt build:

libraryDependencies += "org.planet42" %% "laika-core" % "0.8.0"
libraryDependencies += "org.planet42" %% "laika-core" % "0.9.0"

Example for transforming from file to file:

Expand All @@ -55,7 +55,7 @@ Example for transforming an entire directory of markup files to a single PDF fil

When using Laika's PDF support you need to add one more dependency to your build:

libraryDependencies += "org.planet42" %% "laika-pdf" % "0.8.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.9.0"

### Other Resources
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lazy val basicSettings = Seq(
version := "0.9.0-SNAPSHOT",
version := "0.9.0",
homepage := Some(new URL("http://planet42.github.io/Laika/")),
organization := "org.planet42",
organizationHomepage := Some(new URL("http://planet42.org")),
Expand Down
8 changes: 4 additions & 4 deletions docs/introduction/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ which had been the final release supporting those versions.

Add the plugin to `project/plugins.sbt`:

addSbtPlugin("org.planet42" % "laika-sbt" % "0.8.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.9.0")

Enable the plugin in your project's `build.sbt`:

Expand All @@ -51,7 +51,7 @@ in `target/docs/site`.

Adding the Laika dependency to your sbt build:

libraryDependencies += "org.planet42" %% "laika-core" % "0.8.0"
libraryDependencies += "org.planet42" %% "laika-core" % "0.9.0"

Example for transforming from file to file:

Expand All @@ -68,7 +68,7 @@ Example for transforming an entire directory of markup files to a single PDF fil

When using Laika's PDF support you need to add one more dependency to your build:

libraryDependencies += "org.planet42" %% "laika-pdf" % "0.8.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.9.0"


### Other Resources
Expand Down Expand Up @@ -158,7 +158,7 @@ Road Map

Release History
---------------
* __0.9.0__ (Sep ??, 2018):
* __0.9.0__ (Sep 15, 2018):

* New ExtensionBundle APIs allow to bundle extensions into a single object for easier reuse. Supported extension
hooks include directives, markup parser extensions, rewrite rules, custom renderers, document type matchers,
Expand Down
2 changes: 1 addition & 1 deletion docs/using-laika/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ to first do performance and load testing.

Using the PDF renderer requires to add another dependency to your build:

libraryDependencies += "org.planet42" %% "laika-pdf" % "0.8.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.9.0"

The PDF renderer can then be used with the `Transform` or `Render` APIs:

Expand Down
2 changes: 1 addition & 1 deletion docs/using-laika/sbt.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Laika's sbt plugin requires sbt 0.13.x.

First add the plugin to `project/plugins.sbt`:

addSbtPlugin("org.planet42" % "laika-sbt" % "0.8.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.9.0")

If you want to install it globally, add the line above to
`~/.sbt/1.0/plugins/build.sbt` instead.
Expand Down

0 comments on commit fccf530

Please sign in to comment.