diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 80450759..3e7c5c7d 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,31 @@ Changelog .. changelog:: :version: 1.14.1 - :include_notes_from: unreleased + :released: January 19, 2025 + + .. change:: + :tags: bug, environment + :tickets: 1556 + + Added `tzdata` to `tz` extras, which is required on some platforms such as + Windows. Pull request courtesy Danipulok. + + .. change:: + :tags: usecase, sqlite + :tickets: 1576 + + Modified SQLite's dialect to render "ALTER TABLE RENAME COLUMN" when + :meth:`.Operations.alter_column` is used with a straight rename, supporting + SQLite's recently added column rename feature. + + .. change:: + :tags: bug, autogenerate + :tickets: 1585 + + Fixed bug where autogen render of a "variant" type would fail to catch the + variants if the leading type were a dialect-specific type, rather than a + generic type. + .. changelog:: :version: 1.14.0 diff --git a/docs/build/conf.py b/docs/build/conf.py index 84563e05..d8f3d7fe 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,8 @@ # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.14.0" -release_date = "November 4, 2024" +release = "1.14.1" +release_date = "January 19, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1556.rst b/docs/build/unreleased/1556.rst deleted file mode 100644 index d0b96b13..00000000 --- a/docs/build/unreleased/1556.rst +++ /dev/null @@ -1,6 +0,0 @@ -.. change:: - :tags: bug, environment - :tickets: 1556 - - Added `tzdata` to `tz` extras, which is required on some platforms such as - Windows. Pull request courtesy Danipulok. diff --git a/docs/build/unreleased/1576.rst b/docs/build/unreleased/1576.rst deleted file mode 100644 index f7d4d313..00000000 --- a/docs/build/unreleased/1576.rst +++ /dev/null @@ -1,7 +0,0 @@ -.. change:: - :tags: usecase, sqlite - :tickets: 1576 - - Modified SQLite's dialect to render "ALTER TABLE RENAME COLUMN" when - :meth:`.Operations.alter_column` is used with a straight rename, supporting - SQLite's recently added column rename feature. diff --git a/docs/build/unreleased/1585.rst b/docs/build/unreleased/1585.rst deleted file mode 100644 index d6d6de0d..00000000 --- a/docs/build/unreleased/1585.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 1585 - - Fixed bug where autogen render of a "variant" type would fail to catch the - variants if the leading type were a dialect-specific type, rather than a - generic type. -