Skip to content

Commit

Permalink
finagle, finatra, scrooge, twitter-server, util: September release
Browse files Browse the repository at this point in the history
Summary: Problem

We want to release the next versions of our Twitter OSS libraries:
 - util -> 7.1.0
 - scrooge -> 4.20.0
 - finagle -> 7.1.0
 - twitter-server -> 1.32.0
 - finatra -> 2.13.0

Solution

Prepare libraries for their next releases.

Differential Revision: https://phabricator.twitter.biz/D87932
  • Loading branch information
kevinoliver authored and jenkins committed Sep 6, 2017
1 parent cd7df22 commit cb187fa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
4.x
-----

4.20.0
------

No Changes

4.19.0
------
- scrooge-generator: Generated scala/java code now is using `serviceMap` instead of `functionMap`
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import scoverage.ScoverageKeys
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
val suffix = if (branch == "master") "" else "-SNAPSHOT"

val libVersion = "4.19.0" + suffix
val libVersion = "4.20.0" + suffix

// Please use dodo to build the dependencies for the scrooge develop branch. If
// you would like to instead do it manually, you need to publish util, and finagle locally:
// 'git checkout develop; sbt publishLocal' to publish SNAPSHOT versions of these projects.
val utilVersion = "7.0.0" + suffix
val finagleVersion = "7.0.0" + suffix
val utilVersion = "7.1.0" + suffix
val finagleVersion = "7.1.0" + suffix

val libthriftVersion = "0.5.0-7"

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 @@ -132,7 +132,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>4.19.0</version>
<version>4.20.0</version>
<configuration>
<thriftNamespaceMappings>
<thriftNamespaceMapping>
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.19.0</version>
<version>4.20.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.19.0</version>
<version>4.20.0</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down

0 comments on commit cb187fa

Please sign in to comment.