From a3a2cf2fd6f4be35d73e30866be0cbc9bd374bf5 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sat, 16 Oct 2021 10:27:41 +0300 Subject: [PATCH] Bump to 1.2.0 --- CHANGES.rst | 4 ++-- frozenlist/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index b7968809..80b0cbcb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,8 +14,8 @@ Changelog .. towncrier release notes start -1.2.0a8 (2021-10-15) -==================== +1.2.0 (2021-10-16) +================== Features -------- diff --git a/frozenlist/__init__.py b/frozenlist/__init__.py index 76d07c27..c3edca21 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.2.0a8" +__version__ = "1.2.0" __all__ = ( "FrozenList", "PyFrozenList"