Skip to content

Commit 0982f5e

Browse files
committed
Update scala version in README and build.sbt
1 parent 65802b5 commit 0982f5e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala
99

1010
## Documentation
1111

12-
* [Current API](http://www.scala-lang.org/files/archive/api/current/scala-parser-combinators/scala/util/parsing/combinator)
12+
* [Current API](https://javadoc.io/page/org.scala-lang.modules/scala-parser-combinators_2.12/latest/scala/util/parsing/combinator/index.html)
1313
* The [Getting Started](docs/Getting_Started.md) guide
1414
* A more complicated example, [Building a lexer and parser with Scala's Parser Combinators](https://enear.github.io/2016/03/31/parser-combinators/)
1515
* "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
1818
To depend on scala-parser-combinators in SBT, add something like this to your build.sbt:
1919

2020
```
21-
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
21+
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6"
2222
```
2323

2424
(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
6060
Scala-parser-combinators directly supports scala-js 0.6+, starting with v1.0.5:
6161

6262
```
63-
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "1.0.5"
63+
libraryDependencies += "org.scala-lang.modules" %%% "scala-parser-combinators" % "1.0.6"
6464
```
6565

6666
## Contributing

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ lazy val `scala-parser-combinators` = crossProject.in(file(".")).
4545
).
4646
settings(
4747
moduleName := "scala-parser-combinators",
48-
version := "1.0.6-SNAPSHOT"
48+
version := "1.0.7-SNAPSHOT"
4949
).
5050
jvmSettings(
5151
OsgiKeys.exportPackage := Seq(s"scala.util.parsing.*;version=${version.value}")

0 commit comments

Comments
 (0)