Skip to content

Commit

Permalink
bump version to 3.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Chunyan Song committed Mar 18, 2013
1 parent 4a94c4d commit 9e3f7b5
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
@@ -1,3 +1,17 @@
3.0.8 - 03/18/2013
===============================================================================
* When scrooge-maven-plugin extracts Thrift files from a dependency artifact, it
now puts them in a sub folder named after the artifact id. This way, the user
project can use same-named Thrift files from different artifacts.
* Title case and camel case more consistent with previous version before 3.0.7
We still preserve consecutive upper cases but not in an all-up-case string, eg:
TBird (original) -> tBird (camel case) -> TBird (title case)
HTML (original) -> html (camel case) -> Html (title case)
Thanks to @erikvanoosten
* Finagle client can throw exception on void function. Thanks to @brancek
* Support documentation on enum values. Thanks to @erikvanoosten
* Reorganizing test folder, and add Apache standard test

3.0.7 - 03/07/2013
===============================================================================
* All on-wire names in the Thrift messages are now consistent with
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>com.twitter</groupId>
<artifactId>scrooge</artifactId>
<packaging>pom</packaging>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
<name>scrooge</name>
<url>http://github.com/twitter/scrooge</url>
<description>A Thrift generator for Scala</description>
Expand Down
4 changes: 2 additions & 2 deletions scrooge-generator/pom.xml
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.twitter</groupId>
<artifactId>scrooge</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
</parent>
<properties>
<git.dir>${project.basedir}/../../.git</git.dir>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-runtime</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
<scope>test</scope>
</dependency>
<!-- library dependencies -->
Expand Down
4 changes: 2 additions & 2 deletions scrooge-maven-plugin/demo/pom.xml
Expand Up @@ -65,7 +65,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-runtime</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -144,7 +144,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
<configuration>
<thriftNamespaceMappings>
<thriftNamespaceMapping>
Expand Down
4 changes: 2 additions & 2 deletions scrooge-maven-plugin/pom.xml
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.twitter</groupId>
<artifactId>scrooge</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
</parent>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -124,7 +124,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-generator</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
</dependency>
</dependencies>
<reporting>
Expand Down
2 changes: 1 addition & 1 deletion scrooge-runtime/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.twitter</groupId>
<artifactId>scrooge</artifactId>
<version>3.0.8-SNAPSHOT</version>
<version>3.0.8</version>
</parent>
<properties>
<git.dir>${project.basedir}/../../.git</git.dir>
Expand Down

0 comments on commit 9e3f7b5

Please sign in to comment.