diff --git a/README.md b/README.md index 31e4105a..68900b42 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,21 @@ 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.4" +libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5" ``` (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.) To support multiple Scala versions, see the example in https://github.com/scala/scala-module-dependency-sample. +## ScalaJS support + +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" +``` + ## Contributing * See the [Scala Developer Guidelines](https://github.com/scala/scala/blob/2.12.x/CONTRIBUTING.md) for general contributing guidelines diff --git a/build.sbt b/build.sbt index a8d6ccef..c7b8889c 100644 --- a/build.sbt +++ b/build.sbt @@ -36,7 +36,7 @@ lazy val `scala-parser-combinators` = crossProject.in(file(".")). ). settings( moduleName := "scala-parser-combinators", - version := "1.0.5-SNAPSHOT" + version := "1.0.6-SNAPSHOT" ). jvmSettings( // important!! must come here (why?)