Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2cb29f8

Browse files
Merge pull request #114 from gourlaysama/bump4
Update scala version in README and build.sbt
2 parents 65802b5 + 0982f5e commit 2cb29f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎README.md‎

Lines changed: 3 additions & 3 deletions
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‎

Lines changed: 1 addition & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /