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 9afcbe5 commit 2e24bd0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ as it is included in Scrooge's user's guide.
4.x
-----

4.8.0
4.9.0
------

Breaking API Changes
Expand Down
2 changes: 1 addition & 1 deletion demos/scrooge-maven-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>4.8.0</version>
<version>4.9.0</version>
<configuration>
<thriftNamespaceMappings>
<thriftNamespaceMapping>
Expand Down
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ object Scrooge extends Build {
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
val suffix = if (branch == "master") "" else "-SNAPSHOT"

val libVersion = "4.8.0" + suffix
val libVersion = "4.9.0" + suffix

// To build the develop branch you need to publish util, and finagle locally:
// 'git checkout develop; sbt publishLocal' to publish SNAPSHOT versions of these projects.
val utilVersion = "6.35.0" + suffix
val finagleVersion = "6.36.0" + suffix
val utilVersion = "6.36.0" + suffix
val finagleVersion = "6.37.0" + suffix

val libthriftVersion = "0.5.0-1"

Expand Down
4 changes: 2 additions & 2 deletions scrooge-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>scrooge-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>scrooge-maven-plugin</name>
<version>4.8.0</version>
<version>4.9.0</version>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
Expand Down Expand Up @@ -247,7 +247,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-generator_2.10</artifactId>
<version>4.8.0</version>
<version>4.9.0</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down

0 comments on commit 2e24bd0

Please sign in to comment.