summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG12
-rw-r--r--README.markdown6
-rw-r--r--build.sbt4
3 files changed, 17 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 57e4758..8d988f5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+Version 1.3.3 (1016-12-29)
+--------------------------
+
+For Scala 2.12, this release brings no updates over 1.3.2 because the 2.12 release
+of 1.3.2 was released from a later version of the master branch. Version 1.3.3
+brings the artifacts for Scala 2.10 and 2.11 also to this latest state.
+
+- Fixed decoding of 4-byte UTF-8 characters
+- Refactored UTF-8 decoding into better reusable superclass
+- Decode BigInt / BigDecimal values from JsString (#182)
+- Cross published for Scala 2.10.x, 2.11.x, and 2.12.x
+
Version 1.3.2 (2015-05-06)
--------------------------
- Fixed performance bottleneck in `ProductFormats::fromField` (#132)
diff --git a/README.markdown b/README.markdown
index 69e5327..19f6a8f 100644
--- a/README.markdown
+++ b/README.markdown
@@ -19,13 +19,13 @@ as depicted in this diagram:
### Installation
-_spray-json_ is available from the [repo.spray.io] repository.
-The latest release is `1.3.2` and is built against Scala 2.10.5 and Scala 2.11.6.
+_spray-json_ is available from maven central.
+The latest release is `1.3.3` and is built against Scala 2.10.x, 2.11.x, and 2.12.x.
If you use SBT you can include _spray-json_ in your project with
```scala
-libraryDependencies += "io.spray" %% "spray-json" % "1.3.2"
+libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
```
### Usage
diff --git a/build.sbt b/build.sbt
index de28193..8e9eea7 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,6 +1,6 @@
name := "spray-json"
-version := "1.3.2"
+version := "1.3.3"
organization := "io.spray"
@@ -46,7 +46,7 @@ OsgiKeys.additionalHeaders := Map("-removeheaders" -> "Include-Resource,Private-
// publishing
///////////////
-crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0")
+crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.1")
scalaBinaryVersion <<= scalaVersion(sV => if (CrossVersion.isStable(sV)) CrossVersion.binaryScalaVersion(sV) else sV)