Skip to content

Commit 4624c70

Browse files
ctutikajenkins
authored and
jenkins
committed
Twitter-oss: Prepare OSS libraries for release 24.5.0
Problem We want to release the next versions of our Twitter OSS libraries 24.5.0 util scrooge finagle twitter-server finatra Solution Prepare libraries for their next releases. Differential Revision: https://phabricator.twitter.biz/D1141504
1 parent 3eaf9c5 commit 4624c70

File tree

10 files changed

+25
-20
lines changed

10 files changed

+25
-20
lines changed

CHANGELOG.rst

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com
77
Unreleased
88
----------
99

10+
24.5.0
11+
------
12+
13+
No Changes
14+
1015
23.11.0
1116
-------
1217

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scrooge
22

3-
[![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)
3+
[![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)
44
[![Project status](https://img.shields.io/badge/status-active-brightgreen.svg)](#status)
55
[![Gitter](https://badges.gitter.im/twitter/finagle.svg)](https://gitter.im/twitter/finagle?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
66
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.twitter/scrooge-core_2.12/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.twitter/scrooge-core_2.12)

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Global / excludeLintKeys += scalacOptions
88
// 'git checkout develop; sbt publishLocal' to publish SNAPSHOT versions of these projects.
99

1010
// All Twitter library releases are date versioned as YY.MM.patch
11-
val releaseVersion = "24.2.0-SNAPSHOT"
11+
val releaseVersion = "24.5.0"
1212

1313
lazy val versions = new {
1414
val slf4j = "1.7.30"

demos/scrooge-maven-demo/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,28 @@
2424
<dependency>
2525
<groupId>com.twitter</groupId>
2626
<artifactId>scrooge-core_2.12</artifactId>
27-
<version>24.2.0-SNAPSHOT</version>
27+
<version>24.5.0</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.twitter</groupId>
3131
<artifactId>finagle-thrift_2.12</artifactId>
32-
<version>24.2.0-SNAPSHOT</version>
32+
<version>24.5.0</version>
3333
</dependency>
3434
<!--#dependencies-->
3535
<dependency>
3636
<groupId>com.twitter</groupId>
3737
<artifactId>util-core_2.12</artifactId>
38-
<version>24.2.0-SNAPSHOT</version>
38+
<version>24.5.0</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.twitter</groupId>
4242
<artifactId>util-codec_2.12</artifactId>
43-
<version>24.2.0-SNAPSHOT</version>
43+
<version>24.5.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>com.twitter</groupId>
4747
<artifactId>finagle-core_2.12</artifactId>
48-
<version>24.2.0-SNAPSHOT</version>
48+
<version>24.5.0</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>junit</groupId>
@@ -129,7 +129,7 @@
129129
<plugin>
130130
<groupId>com.twitter</groupId>
131131
<artifactId>scrooge-maven-plugin</artifactId>
132-
<version>24.2.0-SNAPSHOT</version>
132+
<version>24.5.0</version>
133133
<configuration>
134134
<thriftNamespaceMappings>
135135
<thriftNamespaceMapping>

doc/src/sphinx/SBTPlugin.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To use the scrooge-sbt-plugin, add the following lines to your
1313

1414
::
1515

16-
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "23.11.0")
16+
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "24.5.0")
1717

1818
Incorporating this line makes the Scrooge plugin available for use by SBT.
1919
Thrift files added to your project can now have code generated for them. By
@@ -41,8 +41,8 @@ An example using a `build.sbt` file.
4141
name := "Scrooge Demo",
4242
libraryDependencies ++= Seq(
4343
"org.apache.thrift" % "libthrift" % "0.10.0",
44-
"com.twitter" %% "scrooge-core" % "23.11.0",
45-
"com.twitter" %% "finagle-thrift" % "23.11.0",
44+
"com.twitter" %% "scrooge-core" % "24.5.0",
45+
"com.twitter" %% "finagle-thrift" % "24.5.0",
4646
scalaTest % Test
4747
)
4848
)
@@ -101,7 +101,7 @@ have Scrooge generate Java code.
101101
scroogeLanguages in Compile := Seq("java"),
102102
libraryDependencies ++= Seq(
103103
"org.apache.thrift" % "libthrift" % "0.10.0",
104-
"com.twitter" %% "scrooge-core" % "23.11.0",
105-
"com.twitter" %% "finagle-thrift" % "23.11.0",
104+
"com.twitter" %% "scrooge-core" % "24.5.0",
105+
"com.twitter" %% "finagle-thrift" % "24.5.0",
106106
scalaTest % Test
107107
)

doc/src/sphinx/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ Maven users need to add the following to the pom.xml file:
4545
<dependency>
4646
<groupId>com.twitter</groupId>
4747
<artifactId>scrooge-core_2.12</artifactId>
48-
<version>23.11.0</version>
48+
<version>24.5.0</version>
4949
</dependency>
5050

5151
SBT users need this:
5252

5353
::
5454

55-
val scroogeCore = "com.twitter" %% "scrooge-core" % "23.11.0"
55+
val scroogeCore = "com.twitter" %% "scrooge-core" % "24.5.0"
5656

5757
Building Scrooge
5858
----------------

scrooge-maven-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>scrooge-maven-plugin</artifactId>
66
<packaging>maven-plugin</packaging>
77
<name>scrooge-maven-plugin</name>
8-
<version>24.2.0-SNAPSHOT</version>
8+
<version>24.5.0</version>
99
<prerequisites>
1010
<maven>3.0.4</maven>
1111
</prerequisites>
@@ -316,7 +316,7 @@
316316
<dependency>
317317
<groupId>com.twitter</groupId>
318318
<artifactId>scrooge-generator_2.10</artifactId>
319-
<version>24.2.0-SNAPSHOT</version>
319+
<version>24.5.0</version>
320320
</dependency>
321321
<!-- Test Dependencies-->
322322
<dependency>

scrooge-maven-plugin/src/test/resources/unit/project-idl-deps/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<plugin>
1111
<groupId>com.twitter</groupId>
1212
<artifactId>scrooge-maven-plugin</artifactId>
13-
<version>24.2.0-SNAPSHOT</version>
13+
<version>24.5.0</version>
1414
<configuration>
1515
<classifier>idl</classifier>
1616
<project implementation="com.twitter.stubs.ProjectIdlDependenciesStub">

scrooge-maven-plugin/src/test/resources/unit/scrooge-maven-plugin-test/plugin-config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<plugin>
1111
<groupId>com.twitter</groupId>
1212
<artifactId>scrooge-maven-plugin</artifactId>
13-
<version>24.2.0-SNAPSHOT</version>
13+
<version>24.5.0</version>
1414
<configuration>
1515
<localRepository>${localRepository}</localRepository>
1616
<thriftOpts>

scrooge-maven-plugin/src/test/resources/unit/unresolved-idl/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<plugin>
1111
<groupId>com.twitter</groupId>
1212
<artifactId>scrooge-maven-plugin</artifactId>
13-
<version>24.2.0-SNAPSHOT</version>
13+
<version>24.5.0</version>
1414
<configuration>
1515
<classifier>idl</classifier>
1616
<project implementation="com.twitter.stubs.ProjectIdlDependenciesStub">

0 commit comments

Comments
 (0)