Skip to content

Commit

Permalink
release 3.2.8 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
casualjim committed Mar 15, 2014
2 parents 4fab46f + 70ca7db commit a08c41e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ Note, replace XXX with correct Json4s version.

For the native support add the following dependency to your project description:

val json4sNative = "org.json4s" %% "json4s-native" % "3.2.7"
val json4sNative = "org.json4s" %% "json4s-native" % "3.2.8"

For the Jackson support add the following dependency to your project description:

val json4sJackson = "org.json4s" %% "json4s-jackson" % "3.2.7"
val json4sJackson = "org.json4s" %% "json4s-jackson" % "3.2.8"

### Maven users

Expand All @@ -102,24 +102,24 @@ For the native support add the following dependency to your pom:
<dependency>
<groupId>org.json4s</groupId>
<artifactId>json4s-native_${scala.version}</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
</dependency>

For the jackson support add the following dependency to your pom:

<dependency>
<groupId>org.json4s</groupId>
<artifactId>json4s-jackson_${scala.version}</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
</dependency>

### Others

Download following jars:

* http://repo1.maven.org/maven2/org/json4s/3.2.7/json4s-ast_2.10-3.2.7.jar
* http://repo1.maven.org/maven2/org/json4s/3.2.7/json4s-core_2.10-3.2.7.jar
* http://repo1.maven.org/maven2/org/json4s/3.2.7/json4s-native_2.10-3.2.7.jar
* http://repo1.maven.org/maven2/org/json4s/3.2.8/json4s-ast_2.10-3.2.8.jar
* http://repo1.maven.org/maven2/org/json4s/3.2.8/json4s-core_2.10-3.2.8.jar
* http://repo1.maven.org/maven2/org/json4s/3.2.8/json4s-native_2.10-3.2.8.jar
* http://mirrors.ibiblio.org/pub/mirrors/maven2/com/thoughtworks/paranamer/paranamer/2.5.6/paranamer-2.6.jar
* scalap (Only for Scala-2.9+ compatible versions)

Expand All @@ -141,6 +141,12 @@ Support for Box
Migration from older versions
=============================

3.3.0 ->
--------
The behavior of `.toOption` on JValue has changed. Now both `JNothing` and `JNull` return None.
For the old behavior you can use `toSome` which will only turn a `JNothing` into a None.


3.0.0 ->
--------

Expand Down
2 changes: 1 addition & 1 deletion project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object build extends Build {
scalaVersion := "2.10.0",
crossScalaVersions := Seq("2.10.0"),
scalacOptions ++= Seq("-unchecked", "-deprecation", "-optimize", "-feature", "-Yinline-warnings", "-language:existentials", "-language:implicitConversions", "-language:higherKinds", "-language:reflectiveCalls", "-language:postfixOps"),
version := "3.2.8-SNAPSHOT",
version := "3.2.8",
javacOptions ++= Seq("-target", "1.6", "-source", "1.6"),
manifestSetting,
publishSetting,
Expand Down

0 comments on commit a08c41e

Please sign in to comment.