Skip to content

Commit

Permalink
csl: Release CSL libraries
Browse files Browse the repository at this point in the history
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
  • Loading branch information
vkostyukov authored and jenkins committed Jul 7, 2016
1 parent 06c69dc commit 7efeb4c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Note that ``RB_ID=#`` correspond to associated messages in commits.
6.x
-----

6.36.0
------

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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/client-server-anatomy/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/protocols/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion doc/src/sphinx/code/quickstart/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
8 changes: 4 additions & 4 deletions project/Build.scala
Original file line number Diff line number Diff line change
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.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"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
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.7.0"
val scroogeSbtPluginVersionPrefix = "4.8.0"
val scroogeSbtPluginVersion =
if (branch == "master") scroogeSbtPluginVersionPrefix
else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"
Expand Down

0 comments on commit 7efeb4c

Please sign in to comment.