diff --git a/CHANGES.rst b/CHANGES.rst index 7eaf9cf6..cb010cb3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,16 @@ Changelog .. towncrier release notes start +1.3.3 (2022-11-08) +================== + +- Fixed CI runs when creating a new release, where new towncrier versions + fail when the current version section is already present. + + +---- + + 1.3.2 (2022-11-08) ================== diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index 32ccdd55..4f172e7c 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.2" +__version__ = "1.3.3" __all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]