Skip to content

Commit

Permalink
Release 4.0.0-M2
Browse files Browse the repository at this point in the history
  • Loading branch information
satabin committed Apr 14, 2019
1 parent 58eb332 commit 498a828
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Getting Started
This library is published in the [Maven][7] [Central Repository][8].
You can add it to your sbt project by putting this line into your build description:
```scala
libraryDependencies += "org.gnieh" %% f"diffson-$jsonLib" % "4.0.0-M1"
libraryDependencies += "org.gnieh" %% f"diffson-$jsonLib" % "4.0.0-M2"
```

where `jsonLib` is either:
Expand All @@ -37,7 +37,12 @@ where `jsonLib` is either:
- `play-json`
- `circe`

These versions are built for Scala 2.11, 2.12, and 2.13.0-M5 (only `core`).
These versions are built for Scala 2.11 and 2.12.

Scala.JS is also supported for both Scala 2.11 and 2.12. To use it, add this dependency to your build file:
```scala
libraryDependencies += "org.gnieh" %%% f"diffson-$jsonLib" % "4.0.0-M2"
```

Json Library
------------
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ val scala213 = "2.13.0-M5"
lazy val commonSettings = Seq(
organization := "org.gnieh",
scalaVersion := scala212,
version := "4.0.0-M1",
version := "4.0.0-M2",
description := "Json diff/patch library",
licenses += ("The Apache Software License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")),
homepage := Some(url("https://github.com/gnieh/diffson")),
Expand Down

0 comments on commit 498a828

Please sign in to comment.