Skip to content

Commit 8432ace

Browse files
committed
Updates for 0.5.1
1 parent e99a135 commit 8432ace

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# chill #
22

3+
### 0.5.1
4+
* reverse Config contains logic: https://github.com/twitter/chill/pull/205
5+
* fix setConf: https://github.com/twitter/chill/pull/204
6+
* fix default constructor for kryo serialization: https://github.com/twitter/chill/pull/203
7+
* Switched Chill Avro to use ClassTags, added Java unit tests: https://github.com/twitter/chill/pull/200
8+
* Enable cross compilation for chill-avro: https://github.com/twitter/chill/pull/202
9+
310
### 0.5.0
411
* Move to211: https://github.com/twitter/chill/pull/197
512
* Make 2.10.4 the default, move to scalatest: https://github.com/twitter/chill/pull/196

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.5.0` and each scala project is published for `2.10` and `2.11`. Search [search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cchill) when in doubt.
150+
Chill modules are available on Maven Central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.5.1` and each scala project is published for `2.10` and `2.11`. Search [search.maven.org](http://search.maven.org/#search%7Cga%7C1%7Cchill) when in doubt.
151151

152152
## Authors
153153

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ object ChillBuild extends Build {
2020

2121
val sharedSettings = Project.defaultSettings ++ mimaDefaultSettings ++ scalariformSettings ++ Seq(
2222

23-
version := "0.5.0",
23+
version := "0.5.1",
2424
organization := "com.twitter",
2525
scalaVersion := "2.10.4",
2626
crossScalaVersions := Seq("2.10.4", "2.11.2"),
@@ -125,8 +125,8 @@ object ChillBuild extends Build {
125125
Some(subProj)
126126
.filterNot(unreleasedModules.contains(_))
127127
.map { s =>
128-
val suffix = if (javaOnly.contains(s)) "" else "_2.9.3"
129-
"com.twitter" % ("chill-" + s + suffix) % "0.3.6"
128+
val suffix = if (javaOnly.contains(s)) "" else "_2.10"
129+
"com.twitter" % ("chill-" + s + suffix) % "0.5.1"
130130
}
131131

132132
def module(name: String) = {

0 commit comments

Comments
 (0)