Skip to content

Commit c0dabd9

Browse files
committed
Update version and README for v1.0.5
1 parent acddd21 commit c0dabd9

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala
1616
To depend on scala-parser-combinators in SBT, add something like this to your build.sbt:
1717

1818
```
19-
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
19+
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
2020
```
2121

2222
(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.)
2323

2424
To support multiple Scala versions, see the example in https://github.com/scala/scala-module-dependency-sample.
2525

26+
## ScalaJS support
27+
28+
Scala-parser-combinators directly supports scala-js 0.6+, starting with v1.0.5:
29+
30+
```
31+
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "1.0.5"
32+
```
33+
2634
## Contributing
2735

2836
* See the [Scala Developer Guidelines](https://github.com/scala/scala/blob/2.12.x/CONTRIBUTING.md) for general contributing guidelines

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lazy val `scala-parser-combinators` = crossProject.in(file(".")).
3636
).
3737
settings(
3838
moduleName := "scala-parser-combinators",
39-
version := "1.0.5-SNAPSHOT"
39+
version := "1.0.6-SNAPSHOT"
4040
).
4141
jvmSettings(
4242
// important!! must come here (why?)

0 commit comments

Comments
 (0)