Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus authored Apr 27, 2019
1 parent e7d8a0b commit c86862d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ your own SBT project:
resolvers += Resolver.sonatypeRepo("releases")

// use this if you just want jawn's parser, and will implement your own facade
libraryDependencies += "org.typelevel" %% "jawn-parser" % "0.14.0"
libraryDependencies += "org.typelevel" %% "jawn-parser" % "0.14.2"

// use this if you want jawn's parser and also jawn's ast
libraryDependencies += "org.typelevel" %% "jawn-ast" % "0.14.0"
libraryDependencies += "org.typelevel" %% "jawn-ast" % "0.14.2"
```

If you want to use Jawn's parser with another project's AST, see the
"Supporting external ASTs with Jawn" section. For example, with Spray
you would say:

```scala
libraryDependencies += "org.typelevel" %% "jawn-spray" % "0.14.0"
libraryDependencies += "org.typelevel" %% "jawn-spray" % "0.14.2"
```

There are a few reasons you might want to do this:
Expand Down Expand Up @@ -167,7 +167,7 @@ This is how you would include the subproject in build.sbt:
```scala
resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "org.typelevel" %% jawn-"XYZ" % "0.14.0"
libraryDependencies += "org.typelevel" %% jawn-"XYZ" % "0.14.2"
```

(Note that prior to the 0.14.0 release, the group ID was `"org.spire-math"`.)
Expand All @@ -193,7 +193,7 @@ snippet to your `build.sbt` file:
```scala
resolvers += Resolver.sonatypeRepo("releases")

libraryDependencies += "org.typelevel" %% "jawn-parser" % "0.14.0"
libraryDependencies += "org.typelevel" %% "jawn-parser" % "0.14.2"
```

To support your AST of choice, you'll want to define a `Facade[J]`
Expand Down

0 comments on commit c86862d

Please sign in to comment.