Skip to content

Commit fae57e6

Browse files
Daniel Schobeljenkins
Daniel Schobel
authored and
jenkins
committed
twitter-oss: Prepare OSS libraries for release
Summary: Problem We want to release the next versions of our Twitter OSS libraries: util -> 7.0.0 scrooge -> 4.19.0 finagle -> 7.0.0 twitter-server -> 1.31.0 finatra -> 2.12.0 Solution Prepare libraries for their next releases. JIRA Issues: CSL-4761 Differential Revision: https://phabricator.twitter.biz/D81321
1 parent 83b7129 commit fae57e6

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGES

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@
44

55
Note that ``RB_ID=#`` correspond to associated messages in commits.
66

7-
6.x
7+
7.x
88
-----
99

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

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import scoverage.ScoverageKeys
55
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
66
val suffix = if (branch == "master") "" else "-SNAPSHOT"
77

8-
val libVersion = "6.45.0" + suffix
9-
val utilVersion = "6.45.0" + suffix
10-
val scroogeVersion = "4.18.0" + suffix
8+
val libVersion = "7.0.0" + suffix
9+
val utilVersion = "7.0.0" + suffix
10+
val scroogeVersion = "4.19.0" + suffix
1111

1212
val libthriftVersion = "0.5.0-7"
1313

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.12.1"
66

77
libraryDependencies ++= Seq(
8-
"com.twitter" %% "finagle-core" % "6.45.0"
8+
"com.twitter" %% "finagle-core" % "7.0.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.12.1"
66

77
libraryDependencies ++= Seq(
8-
"com.twitter" %% "finagle-mysql" % "6.45.0"
8+
"com.twitter" %% "finagle-mysql" % "7.0.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.12.1"
66

7-
libraryDependencies += "com.twitter" %% "finagle-http" % "6.45.0"
7+
libraryDependencies += "com.twitter" %% "finagle-http" % "7.0.0"

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
resolvers += Classpaths.sbtPluginReleases
22

33
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
4-
val scroogeSbtPluginVersionPrefix = "4.18.0"
4+
val scroogeSbtPluginVersionPrefix = "4.19.0"
55
val scroogeSbtPluginVersion =
66
if (branch == "master") scroogeSbtPluginVersionPrefix
77
else scroogeSbtPluginVersionPrefix + "-SNAPSHOT"

0 commit comments

Comments
 (0)