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.39.0
  - ostrich -> 9.23.0
  - scrooge -> 4.12.0
  - finagle -> 6.40.0
  - twitter-server -> 1.25.0
  - finatra -> 2.6.0

Solution

Prepare libraries for their next releases.

RB_ID=892743
TBR=true
  • Loading branch information
jcrossley authored and jenkins committed Nov 22, 2016
1 parent 3758a46 commit 53cf698
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions 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.40.0
------

New Features
~~~~~~~~~~~~

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.39.0"
"com.twitter" %% "finagle-core" % "6.40.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.39.0"
"com.twitter" %% "finagle-mysql" % "6.40.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.39.0"
libraryDependencies += "com.twitter" %% "finagle-http" % "6.40.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.39.0" + suffix
val utilVersion = "6.38.0" + suffix
val ostrichVersion = "9.22.0" + suffix
val scroogeVersion = "4.11.0" + suffix
val libVersion = "6.40.0" + suffix
val utilVersion = "6.39.0" + suffix
val ostrichVersion = "9.23.0" + suffix
val scroogeVersion = "4.12.0" + suffix

val libthriftVersion = "0.5.0-7"

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
resolvers += Classpaths.sbtPluginReleases

val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
val scroogeSbtPluginVersionPrefix = "4.11.0"
val scroogeSbtPluginVersionPrefix = "4.12.0"
val scroogeSbtPluginVersion =
if (branch == "master") scroogeSbtPluginVersionPrefix
else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"
Expand Down

0 comments on commit 53cf698

Please sign in to comment.