summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2012-03-13 23:17:22 +0100
committerMathias <mathias@spray.cc>2012-03-13 23:24:02 +0100
commit830ed58673f2fb3d9413c223bfda95987d8f6161 (patch)
treeb0b5f1f2eeb2ac3b7872b8a89e6f7bb82fe03523
parent6809f094f47bd7c0a845ea2be3f64c744f1ccb30 (diff)
downloadspray-json-830ed58673f2fb3d9413c223bfda95987d8f6161.tar.gz
spray-json-830ed58673f2fb3d9413c223bfda95987d8f6161.tar.bz2
spray-json-830ed58673f2fb3d9413c223bfda95987d8f6161.zip
Bump version to 1.1.1, update README, CHANGELOG and posterous notes
-rw-r--r--CHANGELOG6
-rw-r--r--README.markdown4
-rw-r--r--build.sbt2
-rw-r--r--notes/1.1.1.markdown4
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9f524e3..14acfb0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+Version 1.1.1 (2012-03-13)
+--------------------------
+- Fixed significant performance problem in JsonParser
+- Improved automatic field name extraction for case classes
+
+
Version 1.1 (2012-02-01)
------------------------
- Added automatic case class field name extraction via new jsonFormatX overloads
diff --git a/README.markdown b/README.markdown
index 6774af3..b0c428c 100644
--- a/README.markdown
+++ b/README.markdown
@@ -11,11 +11,11 @@ It sports the following features:
### Installation
_spray-json_ is available from the [repo.spray.cc] repository.
-The latest release is `1.1.0` and is built against Scala 2.9.1.
+The latest release is `1.1.1` and is built against Scala 2.9.1.
If you use SBT you can include _spray-json_ in your project with
- "cc.spray" %% "spray-json" % "1.1.0"
+ "cc.spray" %% "spray-json" % "1.1.1"
_spray-json_ has only one dependency: the parsing library [parboiled][]
(which is also a dependency of _spray-server_ and _spray-client_, so if you use _spray-json_ with either of them you
diff --git a/build.sbt b/build.sbt
index 01f11e0..d88b22b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,6 +1,6 @@
name := "spray-json"
-version := "1.2.0-SNAPSHOT"
+version := "1.1.1"
organization := "cc.spray"
diff --git a/notes/1.1.1.markdown b/notes/1.1.1.markdown
new file mode 100644
index 0000000..b28b82c
--- /dev/null
+++ b/notes/1.1.1.markdown
@@ -0,0 +1,4 @@
+This is a maintenance release introducing the following changes:
+
+- Fixed significant performance problem in JsonParser
+- Improved automatic field name extraction for case classes \ No newline at end of file