Skip to content

Commit

Permalink
Revert "Twitter-oss: Prepare OSS libraries for release 24.2.0"
Browse files Browse the repository at this point in the history
This reverts commit 996858fd593b43d101d3c546d5a9968dc5408855.

There were issues with the release. Will be retrying it

Differential Revision: https://phabricator.twitter.biz/D1141484
  • Loading branch information
ctutika authored and jenkins committed May 6, 2024
1 parent b9ecf0c commit 3eaf9c5
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 25 deletions.
5 changes: 0 additions & 5 deletions CHANGELOG.rst
Expand Up @@ -7,11 +7,6 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com
Unreleased
----------

24.2.0
------

No Changes

23.11.0
-------

Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# Scrooge

[![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)
[![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)
[![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)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -8,7 +8,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 = "24.2.0"
val releaseVersion = "24.2.0-SNAPSHOT"

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

::

addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "24.2.0")
addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "23.11.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" % "24.2.0",
"com.twitter" %% "finagle-thrift" % "24.2.0",
"com.twitter" %% "scrooge-core" % "23.11.0",
"com.twitter" %% "finagle-thrift" % "23.11.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" % "24.2.0",
"com.twitter" %% "finagle-thrift" % "24.2.0",
"com.twitter" %% "scrooge-core" % "23.11.0",
"com.twitter" %% "finagle-thrift" % "23.11.0",
scalaTest % Test
)
4 changes: 2 additions & 2 deletions doc/src/sphinx/index.rst
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>24.2.0</version>
<version>23.11.0</version>
</dependency>

SBT users need this:

::

val scroogeCore = "com.twitter" %% "scrooge-core" % "24.2.0"
val scroogeCore = "com.twitter" %% "scrooge-core" % "23.11.0"

Building Scrooge
----------------
Expand Down
4 changes: 2 additions & 2 deletions scrooge-maven-plugin/pom.xml
Expand Up @@ -5,7 +5,7 @@
<artifactId>scrooge-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>scrooge-maven-plugin</name>
<version>24.2.0</version>
<version>24.2.0-SNAPSHOT</version>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
Expand Down Expand Up @@ -316,7 +316,7 @@
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-generator_2.10</artifactId>
<version>24.2.0</version>
<version>24.2.0-SNAPSHOT</version>
</dependency>
<!-- Test Dependencies-->
<dependency>
Expand Down
Expand Up @@ -10,7 +10,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>24.2.0</version>
<version>24.2.0-SNAPSHOT</version>
<configuration>
<classifier>idl</classifier>
<project implementation="com.twitter.stubs.ProjectIdlDependenciesStub">
Expand Down
Expand Up @@ -10,7 +10,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>24.2.0</version>
<version>24.2.0-SNAPSHOT</version>
<configuration>
<localRepository>${localRepository}</localRepository>
<thriftOpts>
Expand Down
Expand Up @@ -10,7 +10,7 @@
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>24.2.0</version>
<version>24.2.0-SNAPSHOT</version>
<configuration>
<classifier>idl</classifier>
<project implementation="com.twitter.stubs.ProjectIdlDependenciesStub">
Expand Down

0 comments on commit 3eaf9c5

Please sign in to comment.