summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alembic/__init__.py2
-rw-r--r--docs/build/changelog.rst30
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/897.rst6
-rw-r--r--docs/build/unreleased/900.rst5
-rw-r--r--docs/build/unreleased/920.rst10
6 files changed, 32 insertions, 25 deletions
diff --git a/alembic/__init__.py b/alembic/__init__.py
index 88b0c5e..78a48ac 100644
--- a/alembic/__init__.py
+++ b/alembic/__init__.py
@@ -3,4 +3,4 @@ import sys
from . import context
from . import op
-__version__ = "1.7.2"
+__version__ = "1.7.3"
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 5c30ce7..b2790be 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -4,10 +4,38 @@ Changelog
==========
.. changelog::
- :version: 1.7.2
+ :version: 1.7.3
:include_notes_from: unreleased
.. changelog::
+ :version: 1.7.2
+ :released: September 17, 2021
+
+ .. change::
+ :tags: bug, typing
+ :tickets: 900
+
+ Added missing attributes from context stubs.
+
+ .. change::
+ :tags: bug, mypy
+ :tickets: 897
+
+ Fixed an import in one of the .pyi files that was triggering an
+ assertion error in some versions of mypy.
+
+ .. change::
+ :tags: bug, regression, ops
+ :tickets: 920
+
+ Fixed issue where registration of custom ops was prone to failure due to
+ the registration process running ``exec()`` on generated code that as of
+ the 1.7 series includes pep-484 annotations, which in the case of end user
+ code would result in name resolution errors when the exec occurs. The logic
+ in question has been altered so that the annotations are rendered as
+ forward references so that the ``exec()`` can proceed.
+
+.. changelog::
:version: 1.7.1
:released: August 30, 2021
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 786e4f2..d34b791 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -85,8 +85,8 @@ copyright = u"2010-2021, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.7.1"
-release_date = "August 30, 2021"
+release = "1.7.2"
+release_date = "September 17, 2021"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/897.rst b/docs/build/unreleased/897.rst
deleted file mode 100644
index 9ae0492..0000000
--- a/docs/build/unreleased/897.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, mypy
- :tickets: 897
-
- Fixed an import in one of the .pyi files that was triggering an
- assertion error in some versions of mypy.
diff --git a/docs/build/unreleased/900.rst b/docs/build/unreleased/900.rst
deleted file mode 100644
index 88f9f17..0000000
--- a/docs/build/unreleased/900.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
- :tags: bug, typing
- :tickets: 900
-
- Added missing attributes from context stubs.
diff --git a/docs/build/unreleased/920.rst b/docs/build/unreleased/920.rst
deleted file mode 100644
index 017ce89..0000000
--- a/docs/build/unreleased/920.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
- :tags: bug, regression, ops
- :tickets: 920
-
- Fixed issue where registration of custom ops was prone to failure due to
- the registration process running ``exec()`` on generated code that as of
- the 1.7 series includes pep-484 annotations, which in the case of end user
- code would result in name resolution errors when the exec occurs. The logic
- in question has been altered so that the annotations are rendered as
- forward references so that the ``exec()`` can proceed.