Skip to content

Commit

Permalink
Prepare 21.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hynek committed May 7, 2021
1 parent f83dabb commit 83d3cd7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.rst
Expand Up @@ -4,16 +4,24 @@ Changelog
Versions follow `CalVer <https://calver.org>`_ 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 <https://github.com/python-attrs/attrs/tree/main/changelog.d>`_ 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 <https://github.com/python-attrs/attrs/issues/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 <https://pypi.org/help/#yanked>`_ 21.1.0 from PyPI.
This has **no** consequences if you pin ``attrs`` to 21.1.0.
`#807 <https://github.com/python-attrs/attrs/issues/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)
-------------------
Expand Down
1 change: 0 additions & 1 deletion changelog.d/806.breaking.rst

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/807.breaking.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/attr/__init__.py
Expand Up @@ -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"
Expand Down

0 comments on commit 83d3cd7

Please sign in to comment.