From 7efeb4cc2babd7c99731090fa76ad960627fce14 Mon Sep 17 00:00:00 2001 From: Vladimir Kostyukov Date: Thu, 7 Jul 2016 22:41:00 +0000 Subject: [PATCH] csl: Release CSL libraries Problem / Solution Finagle 6.36 Util 6.35 Ostrich 9.19 TwitterServer 1.21 Finatra 2.2.0 Scrooge 4.8.0 RB_ID=849873 --- CHANGES | 5 ++++- doc/src/sphinx/code/client-server-anatomy/build.sbt | 2 +- doc/src/sphinx/code/protocols/build.sbt | 2 +- doc/src/sphinx/code/quickstart/build.sbt | 2 +- project/Build.scala | 8 ++++---- project/plugins.sbt | 2 +- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGES b/CHANGES index b9a6a3aa0e..71b7da493d 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,9 @@ Note that ``RB_ID=#`` correspond to associated messages in commits. 6.x ----- +6.36.0 +------ + Deprecations ~~~~~~~~~~~~ @@ -987,7 +990,7 @@ New Features * finagle-core: improved Java compatiblity for `c.t.f.Stack.Params` / `c.t.f.Stack.Parameterized`. - * finagle-core: Introduce the ability to add metadata to bound `com.twitter.finagle.Addr`\s. + * finagle-core: Introduce the ability to add metadata to a bound `com.twitter.finagle.Addr`. * finagle-core: Introduce per-address latency compensation. Clients may be configured with a 'Compensator' function that uses the client's address metadata to adjust connection and diff --git a/doc/src/sphinx/code/client-server-anatomy/build.sbt b/doc/src/sphinx/code/client-server-anatomy/build.sbt index ec9916e7f9..0ea4dd783c 100644 --- a/doc/src/sphinx/code/client-server-anatomy/build.sbt +++ b/doc/src/sphinx/code/client-server-anatomy/build.sbt @@ -5,5 +5,5 @@ version := "1.0" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-core" % "6.35.0" + "com.twitter" %% "finagle-core" % "6.36.0" ) diff --git a/doc/src/sphinx/code/protocols/build.sbt b/doc/src/sphinx/code/protocols/build.sbt index 96d8ddbf76..0e2c22fa3d 100644 --- a/doc/src/sphinx/code/protocols/build.sbt +++ b/doc/src/sphinx/code/protocols/build.sbt @@ -5,5 +5,5 @@ version := "1.0" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-mysql" % "6.35.0" + "com.twitter" %% "finagle-mysql" % "6.36.0" ) diff --git a/doc/src/sphinx/code/quickstart/build.sbt b/doc/src/sphinx/code/quickstart/build.sbt index 1e374d2d7f..2c51329cd1 100644 --- a/doc/src/sphinx/code/quickstart/build.sbt +++ b/doc/src/sphinx/code/quickstart/build.sbt @@ -4,4 +4,4 @@ version := "1.0" scalaVersion := "2.11.8" -libraryDependencies += "com.twitter" %% "finagle-http" % "6.35.0" +libraryDependencies += "com.twitter" %% "finagle-http" % "6.36.0" diff --git a/project/Build.scala b/project/Build.scala index 3d521179a1..0c889707d7 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -13,10 +13,10 @@ object Finagle extends Build { val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim val suffix = if (branch == "master") "" else "-SNAPSHOT" - val libVersion = "6.35.0" + suffix - val utilVersion = "6.34.0" + suffix - val ostrichVersion = "9.18.0" + suffix - val scroogeVersion = "4.7.0" + suffix + val libVersion = "6.36.0" + suffix + val utilVersion = "6.35.0" + suffix + val ostrichVersion = "9.19.0" + suffix + val scroogeVersion = "4.8.0" + suffix val libthriftVersion = "0.5.0-1" val netty4Version = "4.1.1.Final" diff --git a/project/plugins.sbt b/project/plugins.sbt index 3d9264df51..7f2e020d94 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ resolvers += Classpaths.sbtPluginReleases resolvers += "twitter-repo" at "https://maven.twttr.com" val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim -val scroogeSbtPluginVersionPrefix = "4.7.0" +val scroogeSbtPluginVersionPrefix = "4.8.0" val scroogeSbtPluginVersion = if (branch == "master") scroogeSbtPluginVersionPrefix else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"