Skip to content

Commit

Permalink
Bump to 0.3.1, update docs and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
codahale committed Jun 6, 2011
1 parent ca1d679 commit ae17e0a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v0.3.1: Jun 05 2011
===================

* Added support for deserializing `Map[Int, _]` and `Map[Long, _]` instances.


v0.3.0: Jun 04 2011
===================
* Added a very comprehensive set of tests, refactored around support for various
Expand All @@ -9,18 +15,21 @@ v0.3.0: Jun 04 2011
* Switched to Maven for builds.
* Removed the deprecated `Parser#parseStreamOf`.


v0.2.2: May 18 2011
===================

* Upgraded to Jackson 1.7.7.
* Fixed bugs in parsing case classes with other specially-namespaced types.


v0.2.1: May 12 2011
===================

* Fixed bug in parsing case classes with `List[A]` members (and anything else
which is typed in the `scala` package.


v0.2.0: May 12 2011
===================

Expand All @@ -31,6 +40,7 @@ v0.2.0: May 12 2011
instead of serializing the `Option[A]` as `null`.
* Removed explicit flushes to output.


v0.1.8: May 05 2011
===================

Expand All @@ -46,34 +56,40 @@ v0.1.7: Mar 31 2011

* Upgraded to Jackson 1.7.4.


v0.1.6: Feb 18 2011
===================

* Serialize `None` instances to `null`. (h/t Alex Cruise again)


v0.1.5: Feb 18 2011
===================

* Added ability to actually serialize `Option` instances. (h/t Alex Cruise)


v0.1.4: Jan 17 2011
===================

* Upgraded to Jackson 1.7.1, which fixes the buffer overruns
* Handle empty JSON documents w/o resorting to `EOFException`


v0.1.3: Jan 12 2011
===================

* Quick fix for potential buffer overrun errors in huge case classes (JACKSON-462).


v0.1.2: Jan 07 2011
===================

* Upgraded to [Jackson 1.7.0](http://jackson.codehaus.org/1.7.0/release-notes/VERSION).
* Added support for `Either[A, B]` instances.
* Internal refactoring of `Json`.


v0.1.1: Dec 09 2010
===================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Go ahead and add Jerkson as a dependency:
<dependency>
<groupId>com.codahale</groupId>
<artifactId>jerkson_${scala.version}</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
</dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.codahale</groupId>
<artifactId>jerkson_2.9.0-1</artifactId>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.1</version>
<name>Jerkson for Scala ${scala.version}</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion pom_2.8.1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.codahale</groupId>
<artifactId>jerkson_2.8.1</artifactId>
<version>0.3.1-SNAPSHOT</version>
<version>0.3.1</version>
<name>Jerkson for Scala ${scala.version}</name>

<properties>
Expand Down

0 comments on commit ae17e0a

Please sign in to comment.