From 2de90143100e713d8ae6b5d1adb5e1e879af01fb Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 29 Dec 2021 14:09:28 +0100 Subject: [PATCH] Prepare 21.4.0 --- CHANGELOG.rst | 19 +++++++++++++------ changelog.d/892.change.rst | 1 - changelog.d/895.change.rst | 1 - changelog.d/896.change.rst | 1 - src/attr/__init__.py | 2 +- 5 files changed, 14 insertions(+), 10 deletions(-) delete mode 100644 changelog.d/892.change.rst delete mode 100644 changelog.d/895.change.rst delete mode 100644 changelog.d/896.change.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9a9f606af..1d194add2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,16 +17,23 @@ Whenever there is a need to break compatibility, it is announced here in the cha However if you intend to build extensions on top of ``attrs`` you have to anticipate that. -Changes for the upcoming release can be found in the `"changelog.d" directory `_ in our repository. +.. towncrier release notes start + +21.4.0 (2021-12-29) +------------------- + +Changes +^^^^^^^ -.. - Do *NOT* add changelog entries here! +- Fixed the test suite on PyPy3.8 where ``cloudpickle`` does not work. + `#892 `_ +- Fixed ``coverage report`` for projects that use ``attrs`` and don't set a ``--source``. + `#895 `_, + `#896 `_ - This changelog is managed by towncrier and is compiled at release time. - See https://github.com/python-attrs/attrs/blob/main/.github/CONTRIBUTING.md#changelog for details. +---- -.. towncrier release notes start 21.3.0 (2021-12-28) ------------------- diff --git a/changelog.d/892.change.rst b/changelog.d/892.change.rst deleted file mode 100644 index 78ac31c51..000000000 --- a/changelog.d/892.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed the test suite on PyPy3.8 where ``cloudpickle`` does not work. diff --git a/changelog.d/895.change.rst b/changelog.d/895.change.rst deleted file mode 100644 index ed8d60d7e..000000000 --- a/changelog.d/895.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``coverage report`` for projects that use ``attrs`` and don't set a ``--source``. diff --git a/changelog.d/896.change.rst b/changelog.d/896.change.rst deleted file mode 100644 index ed8d60d7e..000000000 --- a/changelog.d/896.change.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed ``coverage report`` for projects that use ``attrs`` and don't set a ``--source``. diff --git a/src/attr/__init__.py b/src/attr/__init__.py index 66bbb4bf2..f95c96dd5 100644 --- a/src/attr/__init__.py +++ b/src/attr/__init__.py @@ -24,7 +24,7 @@ from ._version_info import VersionInfo -__version__ = "21.4.0.dev0" +__version__ = "21.4.0" __version_info__ = VersionInfo._from_version_string(__version__) __title__ = "attrs"