diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 24bd4d2fe..c7d0ed88c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,16 +4,24 @@ Changelog Versions follow `CalVer `_ with a strict backwards compatibility policy. The third digit is only for regressions. -Changes for the upcoming release can be found in the `"changelog.d" directory `_ in our repository. +.. towncrier release notes start + +21.2.0 (2021-05-07) +------------------- + +Backward-incompatible Changes +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. - Do *NOT* add changelog entries here! +- We had to revert the recursive feature for ``attr.evolve()`` because it broke some use-cases -- sorry! + `#806 `_ +- Python 3.4 is now blocked using packaging metadata because ``attrs`` can't be imported on it anymore. + To ensure that 3.4 users can keep installing ``attrs`` easily, we will `yank `_ 21.1.0 from PyPI. + This has **no** consequences if you pin ``attrs`` to 21.1.0. + `#807 `_ - This changelog is managed by towncrier and is compiled at release time. - See https://www.attrs.org/en/latest/contributing.html#changelog for details. +---- -.. towncrier release notes start 21.1.0 (2021-05-06) ------------------- diff --git a/changelog.d/806.breaking.rst b/changelog.d/806.breaking.rst deleted file mode 100644 index baa4c02fe..000000000 --- a/changelog.d/806.breaking.rst +++ /dev/null @@ -1 +0,0 @@ -We had to revert the recursive feature for ``attr.evolve()`` because it broke some use-cases -- sorry! diff --git a/changelog.d/807.breaking.rst b/changelog.d/807.breaking.rst deleted file mode 100644 index a321d0859..000000000 --- a/changelog.d/807.breaking.rst +++ /dev/null @@ -1,3 +0,0 @@ -Python 3.4 is now blocked using packaging metadata because ``attrs`` can't be imported on it anymore. -To ensure that 3.4 users can keep installing ``attrs`` easily, we will `yank `_ 21.1.0 from PyPI. -This has **no** consequences if you pin ``attrs`` to 21.1.0. diff --git a/src/attr/__init__.py b/src/attr/__init__.py index 9e34cd703..b1ce7fe24 100644 --- a/src/attr/__init__.py +++ b/src/attr/__init__.py @@ -22,7 +22,7 @@ from ._version_info import VersionInfo -__version__ = "21.2.0.dev0" +__version__ = "21.2.0" __version_info__ = VersionInfo._from_version_string(__version__) __title__ = "attrs"