summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias <mathias@spray.io>2014-10-28 13:37:12 +0100
committerMathias <mathias@spray.io>2014-10-28 13:37:12 +0100
commita53a5a895e462a4a83f88be06a5eb36a21f2efb0 (patch)
treeb27bac5dfebbbf37edb5994f7a03bee05ed593ed
parente0af88f456fcc944d8675f6cfb50fb6f75a69df3 (diff)
downloadspray-json-a53a5a895e462a4a83f88be06a5eb36a21f2efb0.tar.gz
spray-json-a53a5a895e462a4a83f88be06a5eb36a21f2efb0.tar.bz2
spray-json-a53a5a895e462a4a83f88be06a5eb36a21f2efb0.zip
Prepare for release 1.3.1v1.3.1
-rw-r--r--CHANGELOG6
-rw-r--r--README.markdown4
-rw-r--r--build.sbt2
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e5bc9c4..683f98c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+Version 1.3.1 (2014-10-28)
+--------------------------
+- Fixed OutOfMemoryError when parsing unterminated JSON strings (#122)
+- Fixed member names not being unmangled in ProductsFormats (#120)
+
+
Version 1.3.0 (2014-09-22)
--------------------------
- Upgraded to Scala 2.11.2, dropped support for Scala 2.9
diff --git a/README.markdown b/README.markdown
index 1b08245..6e5e738 100644
--- a/README.markdown
+++ b/README.markdown
@@ -20,12 +20,12 @@ as depicted in this diagram:
### Installation
_spray-json_ is available from the [repo.spray.io] repository.
-The latest release is `1.3.0` and is built against Scala 2.10.4 and Scala 2.11.2.
+The latest release is `1.3.1` and is built against Scala 2.10.4 and Scala 2.11.2.
If you use SBT you can include _spray-json_ in your project with
```scala
-libraryDependencies += "io.spray" %% "spray-json" % "1.3.0"
+libraryDependencies += "io.spray" %% "spray-json" % "1.3.1"
```
### Usage
diff --git a/build.sbt b/build.sbt
index 24f13d3..641367e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,6 +1,6 @@
name := "spray-json"
-version := "1.3.0"
+version := "1.3.1"
organization := "io.spray"