From 762bc8512b820e936283d64f4ab27134969193b0 Mon Sep 17 00:00:00 2001 From: Bryce Anderson Date: Thu, 10 Dec 2020 18:25:11 +0000 Subject: [PATCH] Twitter-oss: Prepare OSS libraries for release 20.12.0 Problem We want to release the next versions of our Twitter OSS libraries 20.12.0 - util - scrooge - finagle - twitter-server - finatra Solution Prepare libraries for their next releases. JIRA Issues: CSL-10389 Differential Revision: https://phabricator.twitter.biz/D589851 --- CHANGELOG.rst | 3 +++ README.md | 2 +- build.sbt | 2 +- doc/src/sphinx/code/client-server-anatomy/build.sbt | 2 +- doc/src/sphinx/code/protocols/build.sbt | 2 +- doc/src/sphinx/code/quickstart/build.sbt | 2 +- project/plugins.sbt | 2 +- 7 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c168c84bc7..ffecc4f14c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,9 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com Unreleased ---------- +20.12.0 +------- + New Features ~~~~~~~~~~~~ diff --git a/README.md b/README.md index 71cf0bc691..7a28f4a954 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # Finagle -[![Build status](https://travis-ci.com/twitter/finagle.svg?branch=develop)](https://travis-ci.com/twitter/finagle) +[![Build status](https://travis-ci.com/twitter/finagle.svg?branch=release)](https://travis-ci.com/twitter/finagle) [![Codecov](https://codecov.io/gh/twitter/finagle/branch/develop/graph/badge.svg)](https://codecov.io/gh/twitter/finagle) [![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) diff --git a/build.sbt b/build.sbt index e37eeea151..e01765109d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ import Tests._ import scoverage.ScoverageKeys // All Twitter library releases are date versioned as YY.MM.patch -val releaseVersion = "20.11.0-SNAPSHOT" +val releaseVersion = "20.12.0" val libthriftVersion = "0.10.0" diff --git a/doc/src/sphinx/code/client-server-anatomy/build.sbt b/doc/src/sphinx/code/client-server-anatomy/build.sbt index f2206825c7..a3e40e05fd 100644 --- a/doc/src/sphinx/code/client-server-anatomy/build.sbt +++ b/doc/src/sphinx/code/client-server-anatomy/build.sbt @@ -5,5 +5,5 @@ version := "1.0" scalaVersion := "2.12.11" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-core" % "20.10.0" + "com.twitter" %% "finagle-core" % "20.12.0" ) diff --git a/doc/src/sphinx/code/protocols/build.sbt b/doc/src/sphinx/code/protocols/build.sbt index 6fc996ab7b..e2777de4a1 100644 --- a/doc/src/sphinx/code/protocols/build.sbt +++ b/doc/src/sphinx/code/protocols/build.sbt @@ -5,5 +5,5 @@ version := "1.0" scalaVersion := "2.12.11" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-mysql" % "20.10.0" + "com.twitter" %% "finagle-mysql" % "20.12.0" ) diff --git a/doc/src/sphinx/code/quickstart/build.sbt b/doc/src/sphinx/code/quickstart/build.sbt index 70dd883826..6ccbcc6e4f 100644 --- a/doc/src/sphinx/code/quickstart/build.sbt +++ b/doc/src/sphinx/code/quickstart/build.sbt @@ -7,6 +7,6 @@ lazy val root = (project in file(".")). )), name := "quickstart", libraryDependencies ++= Seq( - "com.twitter" %% "finagle-http" % "20.10.0" + "com.twitter" %% "finagle-http" % "20.12.0" ) ) diff --git a/project/plugins.sbt b/project/plugins.sbt index fabc8ed70f..ccd9d8455a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ resolvers += Classpaths.sbtPluginReleases resolvers += Resolver.sonatypeRepo("snapshots") -val releaseVersion = "20.11.0-SNAPSHOT" +val releaseVersion = "20.12.0" addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % releaseVersion)