Skip to content

Commit a0406b6

Browse files
author
Joe Nievelt
committed
Prepare for 0.6.0 release
1 parent 9f7f132 commit a0406b6

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGES.md

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

3+
### 0.6.0 ###
4+
* Add build instructions to readme and make InjectiveSerializer serializable #216
5+
* Build chill-scrooge for scala 2.11, too #219
6+
* Rewrite Java BitSet serializer to make it more efficient #220
7+
* Bijection 0.8.0, algebird 0.10.0, scala 2.10.5 #228
8+
39
### 0.5.2 ###
410
* Use new Travis CI infrastructure #210
511
* Optimizations for ConfiguredInstantiator. #213

README.md

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

160160
## Maven
161161

162-
Chill modules are available on Maven Central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.5.2` 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.
162+
Chill modules are available on Maven Central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.6.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.
163163

164164
## Authors
165165

project/Build.scala

Lines changed: 2 additions & 2 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.2",
23+
version := "0.6.0",
2424
organization := "com.twitter",
2525
scalaVersion := "2.10.5",
2626
crossScalaVersions := Seq("2.10.5", "2.11.5"),
@@ -126,7 +126,7 @@ object ChillBuild extends Build {
126126
.filterNot(unreleasedModules.contains(_))
127127
.map { s =>
128128
val suffix = if (javaOnly.contains(s)) "" else "_2.10"
129-
"com.twitter" % ("chill-" + s + suffix) % "0.5.2"
129+
"com.twitter" % ("chill-" + s + suffix) % "0.6.0"
130130
}
131131

132132
def module(name: String) = {

0 commit comments

Comments
 (0)