diff --git a/.github/CHANGELOG.rst b/.github/CHANGELOG.rst index ed2285b5959..f552e32499d 100644 --- a/.github/CHANGELOG.rst +++ b/.github/CHANGELOG.rst @@ -2,6 +2,13 @@ Change Log ========== +2.7.3 +----- +*Release date: 30 November 2022* + +- Fixed a mistake in the URL used to deploy a fork to Heroku + + 2.7.2 ----- *Release date: 27 November 2022* diff --git a/docs/conf.py b/docs/conf.py index 4024f32cbf9..35dd15115b9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '2.7' # The full version, including alpha/beta/rc tags. -release = '2.7.2' +release = '2.7.3' rst_epilog = """ .. |vrelease| replace:: v{release} diff --git a/tabbycat/settings/core.py b/tabbycat/settings/core.py index 26e9e6c31c6..4f6693cc144 100644 --- a/tabbycat/settings/core.py +++ b/tabbycat/settings/core.py @@ -22,9 +22,9 @@ # Version # ============================================================================== -TABBYCAT_VERSION = '2.7.2' +TABBYCAT_VERSION = '2.7.3' TABBYCAT_CODENAME = 'Pixie-bob' -READTHEDOCS_VERSION = 'v2.7.2' +READTHEDOCS_VERSION = 'v2.7.3' # ============================================================================== # Internationalization and Localization