Skip to content

Commit 56e7cf5

Browse files
jcrossleyjenkins
authored and
jenkins
committed
twitter-oss: Prepare OSS libraries for release
Problem We want to release the next versions our of Twitter OSS libraries: - util -> 6.37.0 - ostrich -> 9.21 - scrooge -> 4.10.0 - finagle -> 6.38.0 - twitter-server -> 1.23 - finatra -> 2.4.0 Solution Prepare libraries for their next releases. RB_ID=868959
1 parent 4f146db commit 56e7cf5

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Note that ``RB_ID=#`` correspond to associated messages in commits.
77
6.x
88
-----
99

10+
6.38.0
11+
------
12+
1013
New Features
1114
~~~~~~~~~~~~
1215

doc/src/sphinx/code/client-server-anatomy/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ version := "1.0"
55
scalaVersion := "2.11.8"
66

77
libraryDependencies ++= Seq(
8-
"com.twitter" %% "finagle-core" % "6.37.0"
8+
"com.twitter" %% "finagle-core" % "6.38.0"
99
)

doc/src/sphinx/code/protocols/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ version := "1.0"
55
scalaVersion := "2.11.8"
66

77
libraryDependencies ++= Seq(
8-
"com.twitter" %% "finagle-mysql" % "6.37.0"
8+
"com.twitter" %% "finagle-mysql" % "6.38.0"
99
)

doc/src/sphinx/code/quickstart/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version := "1.0"
44

55
scalaVersion := "2.11.8"
66

7-
libraryDependencies += "com.twitter" %% "finagle-http" % "6.37.0"
7+
libraryDependencies += "com.twitter" %% "finagle-http" % "6.38.0"

project/Build.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ object Finagle extends Build {
1313
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
1414
val suffix = if (branch == "master") "" else "-SNAPSHOT"
1515

16-
val libVersion = "6.37.0" + suffix
17-
val utilVersion = "6.36.0" + suffix
18-
val ostrichVersion = "9.20.0" + suffix
19-
val scroogeVersion = "4.9.0" + suffix
16+
val libVersion = "6.38.0" + suffix
17+
val utilVersion = "6.37.0" + suffix
18+
val ostrichVersion = "9.21.0" + suffix
19+
val scroogeVersion = "4.10.0" + suffix
2020

2121
val libthriftVersion = "0.5.0-1"
2222
val netty4Version = "4.1.4.Final"

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resolvers += Classpaths.sbtPluginReleases
22
resolvers += "twitter-repo" at "https://maven.twttr.com"
33

44
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
5-
val scroogeSbtPluginVersionPrefix = "4.9.0"
5+
val scroogeSbtPluginVersionPrefix = "4.10.0"
66
val scroogeSbtPluginVersion =
77
if (branch == "master") scroogeSbtPluginVersionPrefix
88
else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"

0 commit comments

Comments
 (0)