diff --git a/.github/CHANGELOG.rst b/.github/CHANGELOG.rst index b6ea223fa03..0c217a403cf 100644 --- a/.github/CHANGELOG.rst +++ b/.github/CHANGELOG.rst @@ -2,6 +2,17 @@ Change Log ========== +2.9.2 +----- +*Release date: 27 August 2024* + +- Fixed declared winners dropdown triggering validation error +- API: Fixed saving venue constraints +- API: Fixed accessing speaker standings when no round specified +- Heroku: Removed deprecated Redis options +- GitHub Actions: Used current Docker Compose command + + 2.9.1 ----- *Release date: 26 July 2024* diff --git a/docs/conf.py b/docs/conf.py index 7cc829ba659..36d380d0471 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '2.9' # The full version, including alpha/beta/rc tags. -release = '2.9.1' +release = '2.9.2' rst_epilog = """ .. |vrelease| replace:: v{release} diff --git a/tabbycat/settings/core.py b/tabbycat/settings/core.py index 62e84fc8f9e..367a56c8874 100644 --- a/tabbycat/settings/core.py +++ b/tabbycat/settings/core.py @@ -22,9 +22,9 @@ # Version # ============================================================================== -TABBYCAT_VERSION = '2.9.1' +TABBYCAT_VERSION = '2.9.2' TABBYCAT_CODENAME = 'Ragdoll' -READTHEDOCS_VERSION = 'v2.9.1' +READTHEDOCS_VERSION = 'v2.9.2' # ============================================================================== # Internationalization and Localization