File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# chill #
22
3+ ### 0.4.0
4+ * Support serializing asJavaIterable.: https://github.com/twitter/chill/pull/192
5+ * Remove a deprecation, that really should never have been there: https://github.com/twitter/chill/pull/189
6+ * Use scalariform: https://github.com/twitter/chill/pull/188
7+ * README: Update Kryo project URL.: https://github.com/twitter/chill/pull/187
8+ * support mutable BitSet: https://github.com/twitter/chill/pull/185
9+ * Make chill-avro work with generic records: https://github.com/twitter/chill/pull/184
10+ * updating akka dependency to 2.3.2: https://github.com/twitter/chill/pull/182
11+ * add chill-algebird project by copying AlgebirdSerializers from of scaldi...: https://github.com/twitter/chill/pull/177
12+ * Scrooge serializer: https://github.com/twitter/chill/pull/178
13+ * Use shaded asm classes provided by Kryo.: https://github.com/twitter/chill/pull/175
14+
315### 0.3.6
416* Add ScalaAnyRefMapConfig, deals with non-string keys in cascading: https://github.com/twitter/chill/pull/174
517* added AvroSerializer: https://github.com/twitter/chill/pull/172
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ object ChillBuild extends Build {
2020
2121 val sharedSettings = Project .defaultSettings ++ mimaDefaultSettings ++ scalariformSettings ++ Seq (
2222
23- version := " 0.3.6 " ,
23+ version := " 0.4.0 " ,
2424 organization := " com.twitter" ,
2525 scalaVersion := " 2.9.3" ,
2626 crossScalaVersions := Seq (" 2.9.3" , " 2.10.3" ),
@@ -169,7 +169,7 @@ object ChillBuild extends Build {
169169
170170 lazy val chillBijection = module(" bijection" ).settings(
171171 libraryDependencies ++= Seq (
172- " com.twitter" %% " bijection-core" % " 0.6.2 "
172+ " com.twitter" %% " bijection-core" % " 0.6.3 "
173173 )
174174 ).dependsOn(chill % " test->test;compile->compile" )
175175
@@ -230,13 +230,13 @@ object ChillBuild extends Build {
230230 crossPaths := false ,
231231 autoScalaLibrary := false ,
232232 libraryDependencies ++= Seq (
233- " com.twitter" %% " bijection-avro" % " 0.6.2 "
233+ " com.twitter" %% " bijection-avro" % " 0.6.3 "
234234 )
235235 ).dependsOn(chill,chillJava, chillBijection)
236236
237237 lazy val chillAlgebird = module(" algebird" ).settings(
238238 libraryDependencies ++= Seq (
239- " com.twitter" %% " algebird-core" % " 0.5 .0"
239+ " com.twitter" %% " algebird-core" % " 0.7 .0"
240240 )
241241 ).dependsOn(chill)
242242}
You can’t perform that action at this time.
0 commit comments