Skip to content

Commit

Permalink
twitter-oss: Prepare OSS libraries for release
Browse files Browse the repository at this point in the history
Problem

We want to release the next versions our of Twitter OSS libraries:
 - util -> 6.36.0
 - ostrich -> 9.20
 - scrooge -> 4.9.0
 - finagle -> 6.37.0
 - twitter-server -> 1.22
 - finatra -> 2.3.0

Solution

Prepare libraries for their next releases.

RB_ID=865948
TBR=true
  • Loading branch information
cacoco authored and jenkins committed Aug 26, 2016
1 parent 84d8f78 commit aa4f855
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGES
Expand Up @@ -7,6 +7,9 @@ Note that ``RB_ID=#`` correspond to associated messages in commits.
6.x
-----

6.37.0
------

Deprecations
~~~~~~~~~~~~

Expand Down Expand Up @@ -77,9 +80,6 @@ Runtime Behavior Changes
rejected. All Failures generated with the Failure.rejected constructor are flagged Rejected and
Restartable. ``RB_ID=863356``

Runtime Behavior Changes
~~~~~~~~~~~~~~~~~~~~~~~~

* finagle-core: `c.t.f.FixedInetResolver` now optionally retries failed DNS
lookups with provided backoff, and `c.t.f.serverset2.Zk2Resolver` uses this
retry functionality infinitely, exponentially backing off from 1 second to
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/client-server-anatomy/build.sbt
Expand Up @@ -5,5 +5,5 @@ version := "1.0"
scalaVersion := "2.11.8"

libraryDependencies ++= Seq(
"com.twitter" %% "finagle-core" % "6.36.0"
"com.twitter" %% "finagle-core" % "6.37.0"
)
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/protocols/build.sbt
Expand Up @@ -5,5 +5,5 @@ version := "1.0"
scalaVersion := "2.11.8"

libraryDependencies ++= Seq(
"com.twitter" %% "finagle-mysql" % "6.36.0"
"com.twitter" %% "finagle-mysql" % "6.37.0"
)
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/quickstart/build.sbt
Expand Up @@ -4,4 +4,4 @@ version := "1.0"

scalaVersion := "2.11.8"

libraryDependencies += "com.twitter" %% "finagle-http" % "6.36.0"
libraryDependencies += "com.twitter" %% "finagle-http" % "6.37.0"
8 changes: 4 additions & 4 deletions project/Build.scala
Expand Up @@ -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.36.0" + suffix
val utilVersion = "6.35.0" + suffix
val ostrichVersion = "9.19.0" + suffix
val scroogeVersion = "4.8.0" + suffix
val libVersion = "6.37.0" + suffix
val utilVersion = "6.36.0" + suffix
val ostrichVersion = "9.20.0" + suffix
val scroogeVersion = "4.9.0" + suffix

val libthriftVersion = "0.5.0-1"
val netty4Version = "4.1.4.Final"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Expand Up @@ -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.8.0"
val scroogeSbtPluginVersionPrefix = "4.9.0"
val scroogeSbtPluginVersion =
if (branch == "master") scroogeSbtPluginVersionPrefix
else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"
Expand Down

0 comments on commit aa4f855

Please sign in to comment.