diff --git a/.github/CHANGELOG.rst b/.github/CHANGELOG.rst index 95cb8d47ab2..dd4f1631cb8 100644 --- a/.github/CHANGELOG.rst +++ b/.github/CHANGELOG.rst @@ -2,6 +2,15 @@ Change Log ========== +2.5.1 +----- +*Release date: 4 December 2020* + +- Fixed breaks API endpoints not getting the break category +- Ensured that the "votes/ballots carried" team metric is always defined (`#1682 `_) +- Re-implemented rank filters for speaker standings + + 2.5.0 (Nebelung) ---------------- *Release date: 30 November 2020* diff --git a/docs/conf.py b/docs/conf.py index 7950a5b62c7..205402e2873 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '2.5' # The full version, including alpha/beta/rc tags. -release = '2.5.0' +release = '2.5.1' rst_epilog = """ .. |vrelease| replace:: v{release} diff --git a/tabbycat/settings/core.py b/tabbycat/settings/core.py index 4488fcbe076..866955e85f8 100644 --- a/tabbycat/settings/core.py +++ b/tabbycat/settings/core.py @@ -22,9 +22,9 @@ # Version # ============================================================================== -TABBYCAT_VERSION = '2.5.0' +TABBYCAT_VERSION = '2.5.1' TABBYCAT_CODENAME = 'Nebelung' -READTHEDOCS_VERSION = 'v2.5.0' +READTHEDOCS_VERSION = 'v2.5.1' # ============================================================================== # Internationalization and Localization