Skip to content

Commit

Permalink
Twitter-oss: Prepare OSS libraries for release 21.10.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 <New Version>
 - util
 - scrooge
 - finagle
 - twitter-server
 - finatra

Solution

Prepare libraries for their next releases.

JIRA Issues: CSL-11391

Differential Revision: https://phabricator.twitter.biz/D770597
  • Loading branch information
joybestourous authored and jenkins committed Oct 27, 2021
1 parent 09ea341 commit 3b717b9
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com
Unreleased
----------

21.10.0
-------

No Changes

21.9.0
------

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.10.0-SNAPSHOT"
val releaseVersion = "21.10.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.10.0-SNAPSHOT</version>
<version>21.10.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-thrift_2.12</artifactId>
<version>21.10.0-SNAPSHOT</version>
<version>21.10.0</version>
</dependency>
<!--#dependencies-->
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-core_2.12</artifactId>
<version>21.10.0-SNAPSHOT</version>
<version>21.10.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-codec_2.12</artifactId>
<version>21.10.0-SNAPSHOT</version>
<version>21.10.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-core_2.12</artifactId>
<version>21.10.0-SNAPSHOT</version>
<version>21.10.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.10.0-SNAPSHOT</version>
<version>21.10.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.9.0")
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "21.10.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.9.0",
"com.twitter" %% "finagle-thrift" % "21.9.0",
"com.twitter" %% "scrooge-core" % "21.10.0",
"com.twitter" %% "finagle-thrift" % "21.10.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.9.0",
"com.twitter" %% "finagle-thrift" % "21.9.0",
"com.twitter" %% "scrooge-core" % "21.10.0",
"com.twitter" %% "finagle-thrift" % "21.10.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.9.0</version>
<version>21.10.0</version>
</dependency>

SBT users need this:

::

val scroogeCore = "com.twitter" %% "scrooge-core" % "21.9.0"
val scroogeCore = "com.twitter" %% "scrooge-core" % "21.10.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.10.0-SNAPSHOT</version>
<version>21.10.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.10.0-SNAPSHOT</version>
<version>21.10.0</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down

0 comments on commit 3b717b9

Please sign in to comment.