Skip to content

Commit

Permalink
release version 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshalm committed Dec 1, 2019
1 parent bda90ab commit 71f43a1
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ the final release for Scala 2.10 and sbt 0.13 was 0.7.0.
Add the plugin to `project/plugins.sbt`:

```scala
addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.1")
```

Enable the plugin in your project's `build.sbt`:
Expand All @@ -49,7 +49,7 @@ first, as there were significant changes in the Library API.
Adding the Laika dependency to your sbt build:

```scala
libraryDependencies += "org.planet42" %% "laika-core" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-core" % "0.12.1"
```

Example for transforming Markdown to HTML:
Expand All @@ -71,7 +71,7 @@ For file/stream IO, parallel processing and/or EPUB support, based on cats-effec
add the laika-io module to your build:

```scala
libraryDependencies += "org.planet42" %% "laika-io" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-io" % "0.12.1"
```
Example for transforming an entire directory of markup files to a single EPUB file:

Expand Down Expand Up @@ -104,7 +104,7 @@ val res: IO[Unit] = transformer
When using Laika's PDF support you need to add one more dependency to your build:

```scala
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.1"
```

The example for how to transform a directory of input files into a PDF file looks
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.13.0-SNAPSHOT",
version := "0.12.1",
homepage := Some(new URL("http://planet42.github.io/Laika/")),
organization := "org.planet42",
organizationHomepage := Some(new URL("http://planet42.org")),
Expand Down
18 changes: 14 additions & 4 deletions docs/introduction/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ the final release for Scala 2.10 and sbt 0.13 was 0.7.0.

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

addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.1")

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

Expand All @@ -56,7 +56,7 @@ first, as there were significant changes in the Library API.

Adding the Laika dependency to your sbt build:

libraryDependencies += "org.planet42" %% "laika-core" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-core" % "0.12.1"

Example for transforming Markdown to HTML:

Expand All @@ -75,7 +75,7 @@ Example for transforming Markdown to HTML:
For file/stream IO, parallel processing and/or EPUB support, based on cats-effect,
add the laika-io module to your build:

libraryDependencies += "org.planet42" %% "laika-io" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-io" % "0.12.1"

Example for transforming an entire directory of markup files to a single EPUB file:

Expand Down Expand Up @@ -105,7 +105,7 @@ Example for transforming an entire directory of markup files to a single EPUB fi

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

libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.1"

The example for how to transform a directory of input files into a PDF file looks
the same as the EPUB example, apart from swapping `EPUB` for `PDF`
Expand Down Expand Up @@ -203,6 +203,16 @@ Road Map
Release History
---------------

* __0.12.1__ (Dec 1, 2019):

* Fixes and Improvements for the new HOCON parser introduced in version 0.12.0
* Significant improvements for error messages in HOCON parser
* Fixes for nested self references, missing optional self references,
and objects without '=' or ':' separator
* Parser Combinators: The '|' alternative parser now keeps the failure with the
most processed characters and not the last one, for improved error messages
* Fix for script tag with attributes not being recognized in verbatim HTML in Markdown

* __0.12.0__ (Oct 30, 2019):

* New laika-io Module
Expand Down
4 changes: 2 additions & 2 deletions docs/using-laika/embedded.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ as input, and for HTML as output. EPUB and PDF both require additional modules a

First add the dependency to your build:

libraryDependencies += "org.planet42" %% "laika-core" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-core" % "0.12.1"

For most cases where you don't use any of the customization hooks, you should be fine with just these imports:

Expand Down Expand Up @@ -114,7 +114,7 @@ File/Stream IO and Binary Formats
In case you want to transform from files or directories, or use one of the binary formats
like EPUB or PDF, you need to add another dependency to your build:

libraryDependencies += "org.planet42" %% "laika-io" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-io" % "0.12.1"

This module depends on cats-effect, and models all side effects in an abstract effect,
so that you can use it with cats IO, Monix or Zio.
Expand Down
4 changes: 2 additions & 2 deletions docs/using-laika/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ See [Using the sbt Plugin] for more details.
If you want to produce EPUB files with the library API,
the `laika-io` module is required for the binary output:

libraryDependencies += "org.planet42" %% "laika-io" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-io" % "0.12.1"

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

Expand Down Expand Up @@ -294,7 +294,7 @@ See [Using the sbt Plugin] for more details.
If you want to produce PDF files with the library API,
you need to add the `laika-pdf` module to your build:

libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.0"
libraryDependencies += "org.planet42" %% "laika-pdf" % "0.12.1"

The PDF renderer can 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 @@ -20,7 +20,7 @@ supporting that sbt version.

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

addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.0")
addSbtPlugin("org.planet42" % "laika-sbt" % "0.12.1")

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 71f43a1

Please sign in to comment.