From 3e15fbb255600dbeb10d2d9943bf11462a8f8486 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 2 Aug 2022 23:03:52 +0200 Subject: [PATCH] Bump to v1.3.1 --- CHANGES.rst | 10 ++++++++++ frozenlist/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8a23f7e6..a961375e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,16 @@ Changelog .. towncrier release notes start +1.3.1 (2022-08-02) +================== + +The published source distribution package became buildable +under Python 3.11. + + +---- + + 1.3.0 (2022-01-18) ================== diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index be158362..b2cbb1be 100644 --- a/frozenlist/__init__.py +++ b/frozenlist/__init__.py @@ -5,7 +5,7 @@ from functools import total_ordering from typing import Tuple, Type -__version__ = "1.3.0" +__version__ = "1.3.1" __all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]