From f116bfc6ccdd57b91f78e765db8f0f7a9829811e Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Wed, 21 Dec 2022 10:20:48 +0100 Subject: [PATCH] Start new development cycle --- CHANGELOG.md | 8 ++++++++ src/attr/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3d1feb4..61758b5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,14 @@ Whenever there is a need to break compatibility, it is announced here in the cha 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. + + ## [22.2.0](https://github.com/python-attrs/attrs/tree/22.2.0) - 2022-12-21 diff --git a/src/attr/__init__.py b/src/attr/__init__.py index 04243782..0eea7a7e 100644 --- a/src/attr/__init__.py +++ b/src/attr/__init__.py @@ -32,7 +32,7 @@ if sys.version_info < (3, 7): # pragma: no cover DeprecationWarning, ) -__version__ = "22.2.0" +__version__ = "22.3.0.dev0" __version_info__ = VersionInfo._from_version_string(__version__) __title__ = "attrs"