summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-03-08 12:16:40 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2023-03-08 12:16:40 -0500
commit69a72b8ce8710e10983818639b081f3cec6f1ba4 (patch)
tree0f372d15504723d3b7b59cd79197829565380375
parent3c46243f23bd258744e3417566a52ca3ab312d70 (diff)
downloadalembic-69a72b8ce8710e10983818639b081f3cec6f1ba4.tar.gz
- 1.10.2rel_1_10_2
-rw-r--r--docs/build/changelog.rst10
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1196.rst7
3 files changed, 11 insertions, 10 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 59646ae..e8c1f56 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,15 @@ Changelog
.. changelog::
:version: 1.10.2
- :include_notes_from: unreleased
+ :released: March 8, 2023
+
+ .. change::
+ :tags: bug, ops
+ :tickets: 1196
+
+ Fixed regression where Alembic would not run with older SQLAlchemy 1.3
+ versions prior to 1.3.24 due to a missing symbol. Workarounds have been
+ applied for older 1.3 versions.
.. changelog::
:version: 1.10.1
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 6008afb..fd0b2ae 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -99,8 +99,8 @@ copyright = "2010-2023, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.10.1"
-release_date = "March 6, 2023"
+release = "1.10.2"
+release_date = "March 8, 2023"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1196.rst b/docs/build/unreleased/1196.rst
deleted file mode 100644
index a0f0e60..0000000
--- a/docs/build/unreleased/1196.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, ops
- :tickets: 1196
-
- Fixed regression where Alembic would not run with older SQLAlchemy 1.3
- versions prior to 1.3.24 due to a missing symbol. Workarounds have been
- applied for older 1.3 versions.