.. changelog::
:version: 1.14.0
- :include_notes_from: unreleased
+ :released: November 4, 2024
+
+ .. change::
+ :tags: usecase, runtime
+ :tickets: 1560
+
+ Added a new hook to the :class:`.DefaultImpl`
+ :meth:`.DefaultImpl.version_table_impl`. This allows third party dialects
+ to define the exact structure of the alembic_version table, to include use
+ cases where the table requires special directives and/or additional columns
+ so that it may function correctly on a particular backend. This is not
+ intended as a user-expansion hook, only a dialect implementation hook to
+ produce a working alembic_version table. Pull request courtesy Maciek
+ Bryński.
.. changelog::
:version: 1.13.3
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.13.3"
-release_date = "September 23, 2024"
+release = "1.14.0"
+release_date = "November 4, 2024"
# The language for content autogenerated by Sphinx. Refer to documentation
+++ /dev/null
-.. change::
- :tags: usecase, runtime
- :tickets: 1560
-
- Added a new hook to the :class:`.DefaultImpl`
- :meth:`.DefaultImpl.version_table_impl`. This allows third party dialects
- to define the exact structure of the alembic_version table, to include use
- cases where the table requires special directives and/or additional columns
- so that it may function correctly on a particular backend. This is not
- intended as a user-expansion hook, only a dialect implementation hook to
- produce a working alembic_version table. Pull request courtesy Maciek
- Bryński.