Skip to content

Commit 6e45a4c

Browse files
author
Jonathan Coveney
committed
bumped version and changelog
1 parent 3254522 commit 6e45a4c

3 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
# chill #
22

3+
### 0.3.6
4+
* Add ScalaAnyRefMapConfig, deals with non-string keys in cascading: https://github.com/twitter/chill/pull/174
5+
* added AvroSerializer: https://github.com/twitter/chill/pull/172
6+
* Add sbt script for homogeneity with SB, Scalding, etc: https://github.com/twitter/chill/pull/170
7+
* Support for akka 2.2.1: https://github.com/twitter/chill/pull/169
8+
* Protobuf should be in the all target: https://github.com/twitter/chill/pull/168
9+
* Enable getClass equality checking in tests: https://github.com/twitter/chill/pull/165
10+
* Add chill-protobuf, with tests: https://github.com/twitter/chill/pull/163
11+
* support serialization of scala sortedmap: https://github.com/twitter/chill/pull/162
12+
313
### 0.3.5
4-
* Add Serializers for scala SortedList and ListSet. https://github.com/twitter/chill/pull/152
14+
* Add Serializers for scala SortedList and ListSet: https://github.com/twitter/chill/pull/152
515
* Fix Range serialization (and remove broken subclass-serialization of Iterable, Seq, etc): https://github.com/twitter/chill/pull/154
616
* Build and test chill-akka for 2.10: https://github.com/twitter/chill/pull/155
717
* Add chill-thrift: https://github.com/twitter/chill/pull/156
818
* Support JavaConverter-built classes: https://github.com/twitter/chill/pull/159
19+
* Back to 2.21: https://github.com/twitter/chill/pull/157
20+
* Adds a test from issue #8: https://github.com/twitter/chill/pull/158
921

1022
### 0.3.4
1123
* Bugfixes for Externalizer with looped object graphs https://github.com/twitter/chill/pull/143

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Discussion occurs primarily on the [Chill mailing list](https://groups.google.co
147147

148148
## Maven
149149

150-
Chill modules are available on Maven Central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.3.5`.
150+
Chill modules are available on Maven Central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.3.6`.
151151

152152
Current published artifacts are
153153

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ object ChillBuild extends Build {
1212

1313
val sharedSettings = Project.defaultSettings ++ mimaDefaultSettings ++ Seq(
1414

15-
version := "0.3.5",
15+
version := "0.3.6",
1616
organization := "com.twitter",
1717
scalaVersion := "2.9.3",
1818
crossScalaVersions := Seq("2.9.3", "2.10.3"),
@@ -108,7 +108,7 @@ object ChillBuild extends Build {
108108
.filterNot(unreleasedModules.contains(_))
109109
.map { s =>
110110
val suffix = if (javaOnly.contains(s)) "" else "_2.9.3"
111-
"com.twitter" % ("chill-" + s + suffix) % "0.3.4"
111+
"com.twitter" % ("chill-" + s + suffix) % "0.3.6"
112112
}
113113

114114
def module(name: String) = {

0 commit comments

Comments
 (0)