diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 04a1392fe..ef0860c22 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,6 +7,9 @@ Note that ``RB_ID=#`` and ``PHAB_ID=#`` correspond to associated message in comm Unreleased ---------- +21.10.0 +------- + * http-server: Add versions of `HttpRouter#filter` which accept a Guice `TypeLiteral` to aid Java users in being able to apply generically typed Filters obtained from the object graph. ``PHAB_ID=D768777`` diff --git a/README.md b/README.md index 33865ae17..265e134a4 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=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) +[![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) [![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 ac68b1f1c..48ae4b31a 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.10.0-SNAPSHOT" +val releaseVersion = "21.10.0" lazy val buildSettings = Seq( version := releaseVersion, diff --git a/project/plugins.sbt b/project/plugins.sbt index 52708c940..dc7ea50d2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,7 +3,7 @@ resolvers ++= Seq( Resolver.sonatypeRepo("snapshots") ) -val releaseVersion = "21.10.0-SNAPSHOT" +val releaseVersion = "21.10.0" addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % releaseVersion)