diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 5c30ce72..1f577157 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,31 @@ Changelog .. changelog:: :version: 1.7.2 - :include_notes_from: unreleased + :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 diff --git a/docs/build/conf.py b/docs/build/conf.py index 786e4f2e..d34b791a 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.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 9ae0492d..00000000 --- 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 88f9f17a..00000000 --- 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 017ce890..00000000 --- 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.