Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
Bumped version number and updated the changelong
Browse files Browse the repository at this point in the history
  • Loading branch information
netvl committed Apr 20, 2015
1 parent da3da8a commit 4b0b390
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
picopickle 0.1.0
picopickle 0.1.1
================

picopickle is a serialization library for Scala. Its main features are:
Expand All @@ -23,7 +23,7 @@ The library is published to the Maven central, so you can just add the following
to your `build.sbt` file in order to use the core library:

```scala
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-core" % "0.1.0"
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-core" % "0.1.1"
```

The library is compiled for both 2.10 and 2.11 Scala versions. If you use 2.10, however,
Expand All @@ -47,7 +47,7 @@ backend, and an additional JSON backend based on [Jawn] parser is available as
`picopickle-backend-jawn`:

```scala
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-backend-jawn" % "0.1.0"
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-backend-jawn" % "0.1.1"
```

Jawn backend uses Jawn parser (naturally!) to read JSON strings but it uses custom renderer
Expand Down Expand Up @@ -841,7 +841,7 @@ picopickle has several "official" backends. One of them, provided by `picopickle
into a tree of collections. This backend is available immediately with only the `core` dependency:

```scala
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-core" % "0.1.0"
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-core" % "0.1.1"
```

In this backend the following AST mapping holds:
Expand Down Expand Up @@ -879,7 +879,7 @@ Another official backend is used for conversion to and from JSON. JSON parsing i
JSON rendering, however, is custom. This backend is available in `picopickle-backend-jawn`:

```scala
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-backend-jawn" % "0.1.0"
libraryDependencies += "io.github.netvl.picopickle" %% "picopickle-backend-jawn" % "0.1.1"
```

This backend's AST is defined in `io.github.netvl.picopickle.backends.jawn.JsonAst` and consists of several
Expand Down Expand Up @@ -938,6 +938,10 @@ Plans
Changelog
---------

### 0.1.1

* Fixed handling of classes with overloaded `apply` method in companions (#1)

### 0.1.0

* More serializer instances
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ crossScalaVersions := Seq("2.10.4", "2.11.5")

val commonCommonSettings = Seq(
organization := "io.github.netvl.picopickle",
version := "0.1.0",
version := "0.1.1",
scalaVersion := "2.11.5",

autoAPIMappings := true
Expand Down
3 changes: 3 additions & 0 deletions notes/0.1.1.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is a bugfix release.

* Fixed a problem with classes whose companion objects have overloaded `apply` methods.

0 comments on commit 4b0b390

Please sign in to comment.