diff --git a/docs/source/history.rst b/docs/source/history.rst index 6a3f00c..0d10b78 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -5,6 +5,17 @@ Release history .. towncrier release notes start +greenback 1.2.1 (2024-02-20) +---------------------------- + +Bugfixes +~~~~~~~~ + +- greenback now uses deferred evaluation for its type hints. This resolves an + incompatibility with less-than-bleeding-edge versions of `outcome` that was + inadvertently introduced in the 1.2.0 release. (`#30 `__) + + greenback 1.2.0 (2024-02-07) ---------------------------- diff --git a/greenback/_version.py b/greenback/_version.py index 817ccfe..89f071b 100644 --- a/greenback/_version.py +++ b/greenback/_version.py @@ -1,3 +1,3 @@ # This file is imported from __init__.py and exec'd from setup.py -__version__ = "1.2.0+dev" +__version__ = "1.2.1+dev" diff --git a/newsfragments/30.bugfix.rst b/newsfragments/30.bugfix.rst deleted file mode 100644 index bac2bb8..0000000 --- a/newsfragments/30.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -greenback now uses deferred evaluation for its type hints. This resolves an -incompatibility with less-than-bleeding-edge versions of `outcome` that was -inadvertently introduced in the 1.2.0 release.