Skip to content

Commit

Permalink
- 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Sep 17, 2021
1 parent a2a9e19 commit dfb3477
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 24 deletions.
26 changes: 25 additions & 1 deletion docs/build/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions docs/build/unreleased/897.rst

This file was deleted.

5 changes: 0 additions & 5 deletions docs/build/unreleased/900.rst

This file was deleted.

10 changes: 0 additions & 10 deletions docs/build/unreleased/920.rst

This file was deleted.

0 comments on commit dfb3477

Please sign in to comment.