diff --git a/README.md b/README.md index b955ff52..acb59a29 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala ## Documentation - * [Current API](http://www.scala-lang.org/files/archive/api/current/scala-parser-combinators/scala/util/parsing/combinator) + * [Current API](https://javadoc.io/page/org.scala-lang.modules/scala-parser-combinators_2.12/latest/scala/util/parsing/combinator/index.html) * The [Getting Started](docs/Getting_Started.md) guide * A more complicated example, [Building a lexer and parser with Scala's Parser Combinators](https://enear.github.io/2016/03/31/parser-combinators/) * "Combinator Parsing", chapter 33 of [_Programming in Scala, Third Edition_](http://www.artima.com/shop/programming_in_scala), shows how to use this library to parse arithmetic expressions and JSON. The second half of the chapter examines how the library is implemented. @@ -18,7 +18,7 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala To depend on scala-parser-combinators in SBT, add something like this to your build.sbt: ``` -libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5" +libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6" ``` (Assuming you're using a `scalaVersion` for which a scala-parser-combinators is published. The first 2.11 milestone for which this is true is 2.11.0-M4.) @@ -60,7 +60,7 @@ For a detailed unpacking of this example see Scala-parser-combinators directly supports scala-js 0.6+, starting with v1.0.5: ``` -libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "1.0.5" +libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "1.0.6" ``` ## Contributing diff --git a/build.sbt b/build.sbt index 1f632029..3dce8165 100644 --- a/build.sbt +++ b/build.sbt @@ -45,7 +45,7 @@ lazy val `scala-parser-combinators` = crossProject.in(file(".")). ). settings( moduleName := "scala-parser-combinators", - version := "1.0.6-SNAPSHOT" + version := "1.0.7-SNAPSHOT" ). jvmSettings( OsgiKeys.exportPackage := Seq(s"scala.util.parsing.*;version=${version.value}")