From e41e19376f112a009bf38eecfe7bc8b2667ad5b7 Mon Sep 17 00:00:00 2001 From: Hamdi Allam Date: Fri, 13 Aug 2021 17:53:30 +0000 Subject: [PATCH] Twitter-oss: update OSS libraries post-release to 21.9.0 Problem We want to update to the next SNAPSHOT version of our Twitter OSS libraries 21.9.0 - util - scrooge - finagle - twitter-server - finatra Solution Prepare libraries for their next SNAPSHOT version. JIRA Issues: CSL-11162 Differential Revision: https://phabricator.twitter.biz/D724396 --- README.md | 4 ++-- build.sbt | 2 +- project/plugins.sbt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4da40996e..0394b063f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Finatra -[![Build Status](https://github.com/twitter/finatra/workflows/continuous%20integration/badge.svg?branch=release)](https://github.com/twitter/finatra/actions?query=workflow%3A%22continuous+integration%22+branch%3Arelease) -[![Test Coverage](https://codecov.io/github/twitter/finatra/coverage.svg?branch=release)](https://codecov.io/github/twitter/finatra?branch=release) +[![Build Status](https://github.com/twitter/finatra/workflows/continuous%20integration/badge.svg?branch=develop)](https://github.com/twitter/finatra/actions?query=workflow%3A%22continuous+integration%22+branch%3Adevelop) +[![Test Coverage](https://codecov.io/github/twitter/finatra/coverage.svg?branch=develop)](https://codecov.io/github/twitter/finatra?branch=develop) [![Project status](https://img.shields.io/badge/status-active-brightgreen.svg)](#status) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.twitter/finatra-http-server_2.12/badge.svg)][maven-central] [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/twitter/finatra) diff --git a/build.sbt b/build.sbt index 1288d49d0..1b0e6d981 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ Global / excludeLintKeys += scalacOptions Global / concurrentRestrictions += Tags.limit(Tags.Test, 1) // All Twitter library releases are date versioned as YY.MM.patch -val releaseVersion = "21.8.0" +val releaseVersion = "21.9.0-SNAPSHOT" lazy val buildSettings = Seq( version := releaseVersion, diff --git a/project/plugins.sbt b/project/plugins.sbt index d7088debc..1035f7e89 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,7 +3,7 @@ resolvers ++= Seq( Resolver.sonatypeRepo("snapshots") ) -val releaseVersion = "21.8.0" +val releaseVersion = "21.9.0-SNAPSHOT" addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % releaseVersion)