From 21b8a8b3eeca571eedc7094df53d5eb806856b61 Mon Sep 17 00:00:00 2001 From: Ryan O'Neill Date: Tue, 21 May 2019 00:30:23 +0000 Subject: [PATCH] twitter-oss: Prepare OSS libraries for point release 19.5.1 Problem We want to release a point release version of our Twitter OSS libraries 19.5.1 - util - scrooge - finagle - twitter-server - finatra Solution Prepare libaries for their point release. Differential Revision: https://phabricator.twitter.biz/D317491 --- CHANGELOG.rst | 5 +++++ 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, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d3dee88e45..a85714e2c8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,11 @@ Note that ``PHAB_ID=#`` and ``RB_ID=#`` correspond to associated messages in com Unreleased ---------- +19.5.1 +------ + +No Changes + 19.5.0 ------ diff --git a/README.md b/README.md index a84f3997d7..9513b5763d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # Finagle -[![Build status](https://travis-ci.org/twitter/finagle.svg?branch=develop)](https://travis-ci.org/twitter/finagle) +[![Build status](https://travis-ci.org/twitter/finagle.svg?branch=master)](https://travis-ci.org/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 2607d4e3ea..2dcc22619e 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 = "19.6.0-SNAPSHOT" +val releaseVersion = "19.5.1" 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 0083170a18..830785cbba 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.1" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-core" % "19.5.0" + "com.twitter" %% "finagle-core" % "19.5.1" ) diff --git a/doc/src/sphinx/code/protocols/build.sbt b/doc/src/sphinx/code/protocols/build.sbt index 3aa2181b4f..0eae06bc6f 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.1" libraryDependencies ++= Seq( - "com.twitter" %% "finagle-mysql" % "19.5.0" + "com.twitter" %% "finagle-mysql" % "19.5.1" ) diff --git a/doc/src/sphinx/code/quickstart/build.sbt b/doc/src/sphinx/code/quickstart/build.sbt index 2ab16a015f..fb8aa289f3 100644 --- a/doc/src/sphinx/code/quickstart/build.sbt +++ b/doc/src/sphinx/code/quickstart/build.sbt @@ -4,4 +4,4 @@ version := "1.0" scalaVersion := "2.12.1" -libraryDependencies += "com.twitter" %% "finagle-http" % "19.5.0" +libraryDependencies += "com.twitter" %% "finagle-http" % "19.5.1" diff --git a/project/plugins.sbt b/project/plugins.sbt index d2eb40415f..bc487fc12b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ resolvers += Classpaths.sbtPluginReleases resolvers += Resolver.sonatypeRepo("snapshots") -val releaseVersion = "19.6.0-SNAPSHOT" +val releaseVersion = "19.5.1" addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % releaseVersion)