diff --git a/CHANGES b/CHANGES index 40e08fd73e..572dea7c5a 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,8 @@ Note that ``RB_ID=#`` correspond to associated messages in commits. Next Version +6.37.0 2016-09-07 + New Features: * util-app: Introduce `c.t.app.Flag.letClear` allowing flags to be unset. diff --git a/README.md b/README.md index b690b86393..1d1a2ba23b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ for more details about how to contribute. An example SBT dependency string for the `util-collection` tools would look like this: ```scala -val collUtils = "com.twitter" %% "util-collection" % "6.36.0" +val collUtils = "com.twitter" %% "util-collection" % "6.37.0" ``` # Units diff --git a/project/Build.scala b/project/Build.scala index 74ad63bd4e..3c11f22918 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -10,7 +10,7 @@ object Util extends Build { val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim val suffix = if (branch == "master") "" else "-SNAPSHOT" - val libVersion = "6.36.0" + suffix + val libVersion = "6.37.0" + suffix val zkVersion = "3.5.0-alpha" val zkClientVersion = "0.0.79" val zkGroupVersion = "0.0.90"