Skip to content

Commit 83d3cd7

Browse files
committed
Prepare 21.2.0
1 parent f83dabb commit 83d3cd7

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

CHANGELOG.rst

+14-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,24 @@ Changelog
44
Versions follow `CalVer <https://calver.org>`_ with a strict backwards compatibility policy.
55
The third digit is only for regressions.
66

7-
Changes for the upcoming release can be found in the `"changelog.d" directory <https://github.com/python-attrs/attrs/tree/main/changelog.d>`_ in our repository.
7+
.. towncrier release notes start
8+
9+
21.2.0 (2021-05-07)
10+
-------------------
11+
12+
Backward-incompatible Changes
13+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
814

9-
..
10-
Do *NOT* add changelog entries here!
15+
- We had to revert the recursive feature for ``attr.evolve()`` because it broke some use-cases -- sorry!
16+
`#806 <https://github.com/python-attrs/attrs/issues/806>`_
17+
- Python 3.4 is now blocked using packaging metadata because ``attrs`` can't be imported on it anymore.
18+
To ensure that 3.4 users can keep installing ``attrs`` easily, we will `yank <https://pypi.org/help/#yanked>`_ 21.1.0 from PyPI.
19+
This has **no** consequences if you pin ``attrs`` to 21.1.0.
20+
`#807 <https://github.com/python-attrs/attrs/issues/807>`_
1121

12-
This changelog is managed by towncrier and is compiled at release time.
1322

14-
See https://www.attrs.org/en/latest/contributing.html#changelog for details.
23+
----
1524

16-
.. towncrier release notes start
1725

1826
21.1.0 (2021-05-06)
1927
-------------------

changelog.d/806.breaking.rst

-1
This file was deleted.

changelog.d/807.breaking.rst

-3
This file was deleted.

src/attr/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from ._version_info import VersionInfo
2323

2424

25-
__version__ = "21.2.0.dev0"
25+
__version__ = "21.2.0"
2626
__version_info__ = VersionInfo._from_version_string(__version__)
2727

2828
__title__ = "attrs"

0 commit comments

Comments
 (0)