diff --git a/CHANGES.rst b/CHANGES.rst index 3b017c51..8a23f7e6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,8 +14,8 @@ Changelog .. towncrier release notes start -1.3.0a0 (2022-01-18) -==================== +1.3.0 (2022-01-18) +================== Bugfixes -------- diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index 0c09e173..be158362 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.0a0" +__version__ = "1.3.0" __all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...]