diff --git a/.github/CHANGELOG.rst b/.github/CHANGELOG.rst index 661a9a0c9dc..f0789107e71 100644 --- a/.github/CHANGELOG.rst +++ b/.github/CHANGELOG.rst @@ -2,6 +2,17 @@ Change Log ========== +2.5.7 +----- +*Release date: 8 March 2021* + +- Fixed ballots API endpoint failing due to scoreless ballots +- Fixed points emails not loading points +- Fixed warning message for panellist demotion being shown in other warnings +- Made results silently fail with trainee ballots (due to demotion) +- Placed back the speaker name for the Speaker Score by Adj admin view, avoiding crashes + + 2.5.6 ----- *Release date: 13 January 2021* diff --git a/docs/conf.py b/docs/conf.py index 3a7185f9098..42358fdf995 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.6' +release = '2.5.7' rst_epilog = """ .. |vrelease| replace:: v{release} diff --git a/tabbycat/settings/core.py b/tabbycat/settings/core.py index d1c07046e58..b3d8d901c17 100644 --- a/tabbycat/settings/core.py +++ b/tabbycat/settings/core.py @@ -22,9 +22,9 @@ # Version # ============================================================================== -TABBYCAT_VERSION = '2.5.6' +TABBYCAT_VERSION = '2.5.7' TABBYCAT_CODENAME = 'Nebelung' -READTHEDOCS_VERSION = 'v2.5.6' +READTHEDOCS_VERSION = 'v2.5.7' # ============================================================================== # Internationalization and Localization