summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2011-07-18 16:29:43 +0200
committerMathias <mathias@spray.cc>2011-07-18 16:31:34 +0200
commit457a5fdab3e76dd8a426ef924ddd5f063b19e3aa (patch)
treee30cfd242dc2d449b290357fdafa3a38a47e95e2 /README.markdown
parentca189aa4669ec7c3ed71f420624788abbdc5363b (diff)
downloadspray-json-457a5fdab3e76dd8a426ef924ddd5f063b19e3aa.tar.gz
spray-json-457a5fdab3e76dd8a426ef924ddd5f063b19e3aa.tar.bz2
spray-json-457a5fdab3e76dd8a426ef924ddd5f063b19e3aa.zip
Prepare for 1.0.0 release
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.markdown b/README.markdown
index 752ccdf..1d1edec 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,22 +4,22 @@ It sports the following features:
* Simple immutable model of the JSON language elements
* An efficient JSON PEG parser (implemented with [parboiled][])
-* Choice of either compact or pretty JSON to-string-printing
+* Choice of either compact or pretty JSON-to-string printing
* Type-class based (de)serialization of custom objects (no reflection, no intrusion)
### Installation
_spray-json_ is available from the [scala-tools.org][] repositories.
-There is no official release yet, but the current snapshot is `1.0-SNAPSHOT`.
-It is built against Scala 2.9.0-1, but backporting to 2.8.1 is no problem (let me know if you need a 2.8.1 compatible version).
+The latest release is `1.0.0`.
+It's built against Scala 2.9.0-1, but backporting to 2.8.1 is no problem (let me know if you need a 2.8.1 compatible version).
If you use SBT you can include _spray-json_ in your project with
- val sprayJsonModuleConfig = ModuleConfiguration("cc.spray.json", ScalaToolsSnapshots)
- val sprayJson = "cc.spray.json" %% "spray-json" % "1.0.0-SNAPSHOT" % "compile" withSources()
+ val sprayJson = "cc.spray.json" %% "spray-json" % "1.0.0" % "compile" withSources()
-_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 are not incurring any additional dependency).
+_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 are not incurring any additional dependency).
### Usage