From b4bc96c2d3f001a31f85c5af4c2bac9c417d2b88 Mon Sep 17 00:00:00 2001 From: Ryan O'Neill Date: Thu, 20 Apr 2017 20:59:51 +0000 Subject: [PATCH] Twitter-oss: Prepare OSS libraries for release Problem We want to release the next versions of our Twitter OSS libraries: - util -> 6.43.0 - ostrich -> 9.27.0 - scrooge -> 4.16.0 - finagle -> 6.44.0 - twitter-server -> 1.29.0 - finatra -> 2.10.0 Solution Prepare libraries for their next releases. RB_ID=915023 --- CHANGES | 2 ++ README.md | 2 +- project/Build.scala | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 498a4be3b3..00f7d11cd8 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,8 @@ Note that ``RB_ID=#`` correspond to associated messages in commits. Next Version +6.43.0 2017-04-20 + Runtime Behavior Changes: * util-core: `Closable.all(..)` will now catch synchronous exceptions thrown diff --git a/README.md b/README.md index 34708a55f3..e97107ba36 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.42.0" +val collUtils = "com.twitter" %% "util-collection" % "6.43.0" ``` # Units diff --git a/project/Build.scala b/project/Build.scala index 4df1872dbe..8b285ac6d3 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -11,7 +11,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.42.0" + suffix + val libVersion = "6.43.0" + suffix val zkVersion = "3.5.0-alpha" val zkClientVersion = "0.0.81" val zkGroupVersion = "0.0.92"