Skip to content

Commit

Permalink
Release CSL libraries (Sept 2015).
Browse files Browse the repository at this point in the history
- Release finagle, ostrich, scrooge, twitter-server, util (Sept 2015).

RB_ID=747942
  • Loading branch information
nshkrob authored and jenkins committed Sep 28, 2015
1 parent 9fc264c commit 87b84f8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ as it is included in Scrooge's user's guide.
4.x
-----

4.1.0
~~~~~~~

4.0.0
~~~~~~~

Expand Down
4 changes: 2 additions & 2 deletions demos/scrooge-maven-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-core_2.10</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -137,7 +137,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>4.0.0</version>
<version>4.1.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 @@ -15,12 +15,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.0.0" + suffix
val libVersion = "4.1.0" + suffix

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

def util(which: String) = "com.twitter" %% ("util-"+which) % utilVersion
def finagle(which: String) = "com.twitter" %% ("finagle-"+which) % finagleVersion
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.0.0</version>
<version>4.1.0</version>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
Expand Down Expand Up @@ -242,7 +242,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-generator_2.10</artifactId>
<version>4.0.0</version>
<version>4.1.0</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down

0 comments on commit 87b84f8

Please sign in to comment.