Skip to content

Commit ae7c60f

Browse files
committed
Update changes, version and bump the algebird + bijection version deps
1 parent a0be93b commit ae7c60f

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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

project/Build.scala

Lines changed: 4 additions & 4 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.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
}

0 commit comments

Comments
 (0)