From 364d5fdb578eb0602fcedf899af45ccdbd77639a Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 3 Feb 2021 10:01:34 -0500 Subject: [PATCH] - 1.5.4 --- docs/build/changelog.rst | 11 ++++++++++- docs/build/conf.py | 4 ++-- docs/build/unreleased/789.rst | 8 -------- 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 docs/build/unreleased/789.rst diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index ccafe844..41799808 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,16 @@ Changelog .. changelog:: :version: 1.5.4 - :include_notes_from: unreleased + :released: February 3, 2021 + + .. change:: + :tags: bug, versioning + :tickets: 789 + + Fixed bug in versioning model where a downgrade across a revision with a + dependency on another branch, yet an ancestor is also dependent on that + branch, would produce an erroneous state in the alembic_version table, + making upgrades impossible without manually repairing the table. .. changelog:: :version: 1.5.3 diff --git a/docs/build/conf.py b/docs/build/conf.py index 8a2c82c1..4f84afc5 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -85,8 +85,8 @@ # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.5.3" -release_date = "January 29, 2021" +release = "1.5.4" +release_date = "February 3, 2021" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/789.rst b/docs/build/unreleased/789.rst deleted file mode 100644 index 8fb5e101..00000000 --- a/docs/build/unreleased/789.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, versioning - :tickets: 789 - - Fixed bug in versioning model where a downgrade across a revision with a - dependency on another branch, yet an ancestor is also dependent on that - branch, would produce an erroneous state in the alembic_version table, - making upgrades impossible without manually repairing the table.