Skip to content

Commit 5d733ef

Browse files
authored
Merge pull request #94 from gourlaysama/update-post-1.0.5
Update version and README for v1.0.5
2 parents 94e25a3 + c0dabd9 commit 5d733ef

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
@@ -17,13 +17,21 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala
1717
To depend on scala-parser-combinators in SBT, add something like this to your build.sbt:
1818

1919
```
20-
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
20+
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
2121
```
2222

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

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

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

2937
* 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)