Skip to content

Commit

Permalink
Twitter-oss: Prepare OSS libraries for release 21.9.0
Browse files Browse the repository at this point in the history
Problem

We want to release the next versions of our Twitter OSS libraries 21.9.0
 - util
 - scrooge
 - finagle
 - twitter-server
 - finatra

Solution

Prepare libraries for their next releases.

Differential Revision: https://phabricator.twitter.biz/D754337
  • Loading branch information
Bryce Anderson authored and jenkins committed Sep 30, 2021
1 parent 8d768ca commit 3177722
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com
Unreleased
----------

21.9.0
------

Breaking API Changes
~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Scrooge

[![Build Status](https://github.com/twitter/scrooge/workflows/continuous%20integration/badge.svg?branch=develop)](https://github.com/twitter/scrooge/actions?query=workflow%3A%22continuous+integration%22+branch%3Adevelop)
[![Build Status](https://github.com/twitter/scrooge/workflows/continuous%20integration/badge.svg?branch=release)](https://github.com/twitter/scrooge/actions?query=workflow%3A%22continuous+integration%22+branch%3Arelease)
[![Codecov](https://codecov.io/gh/twitter/scrooge/branch/develop/graph/badge.svg)](https://codecov.io/gh/twitter/scrooge)
[![Project status](https://img.shields.io/badge/status-active-brightgreen.svg)](#status)
[![Gitter](https://badges.gitter.im/twitter/finagle.svg)](https://gitter.im/twitter/finagle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Global / excludeLintKeys += scalacOptions
// 'git checkout develop; sbt publishLocal' to publish SNAPSHOT versions of these projects.

// All Twitter library releases are date versioned as YY.MM.patch
val releaseVersion = "21.9.0-SNAPSHOT"
val releaseVersion = "21.9.0"

lazy val versions = new {
val slf4j = "1.7.30"
Expand Down
12 changes: 6 additions & 6 deletions demos/scrooge-maven-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,28 +24,28 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-core_2.12</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-thrift_2.12</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<!--#dependencies-->
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-core_2.12</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-codec_2.12</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-core_2.12</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -129,7 +129,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
<configuration>
<thriftNamespaceMappings>
<thriftNamespaceMapping>
Expand Down
10 changes: 5 additions & 5 deletions doc/src/sphinx/SBTPlugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To use the scrooge-sbt-plugin, add the following lines to your

::

addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "21.8.0")
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "21.9.0")

Incorporating this line makes the Scrooge plugin available for use by SBT.
Thrift files added to your project can now have code generated for them. By
Expand Down Expand Up @@ -41,8 +41,8 @@ An example using a `build.sbt` file.
name := "Scrooge Demo",
libraryDependencies ++= Seq(
"org.apache.thrift" % "libthrift" % "0.10.0",
"com.twitter" %% "scrooge-core" % "21.8.0",
"com.twitter" %% "finagle-thrift" % "21.8.0",
"com.twitter" %% "scrooge-core" % "21.9.0",
"com.twitter" %% "finagle-thrift" % "21.9.0",
scalaTest % Test
)
)
Expand Down Expand Up @@ -101,7 +101,7 @@ have Scrooge generate Java code.
scroogeLanguages in Compile := Seq("java"),
libraryDependencies ++= Seq(
"org.apache.thrift" % "libthrift" % "0.10.0",
"com.twitter" %% "scrooge-core" % "21.8.0",
"com.twitter" %% "finagle-thrift" % "21.8.0",
"com.twitter" %% "scrooge-core" % "21.9.0",
"com.twitter" %% "finagle-thrift" % "21.9.0",
scalaTest % Test
)
4 changes: 2 additions & 2 deletions doc/src/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ Maven users need to add the following to the pom.xml file:
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-core_2.12</artifactId>
<version>21.8.0</version>
<version>21.9.0</version>
</dependency>

SBT users need this:

::

val scroogeCore = "com.twitter" %% "scrooge-core" % "21.8.0"
val scroogeCore = "com.twitter" %% "scrooge-core" % "21.9.0"

Building Scrooge
----------------
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>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
Expand Down Expand Up @@ -297,7 +297,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-generator_2.10</artifactId>
<version>21.9.0-SNAPSHOT</version>
<version>21.9.0</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down

0 comments on commit 3177722

Please sign in to comment.