From 15cb1b43eb4862aaea599b9f4a863e91723473a3 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Sat, 20 Jan 2024 14:04:22 +0000 Subject: [PATCH] Release v1.4.0 (#382) --- CHANGES.rst | 9 ++++++++- aiorwlock/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index bebf58b..c028b11 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,14 @@ Changes ------- -1.3.0 (2022-1-18) +1.4.0 (2024-01-20) +^^^^^^^^^^^^^^^^^^ + +* Lazily evaluate current loop to allow instantiating lock outside of async functions. +* Support Python 3.11 and 3.12. +* Drop Python 3.7 support. + +1.3.0 (2022-01-18) ^^^^^^^^^^^^^^^^^^ * Dropped Python 3.6 support diff --git a/aiorwlock/__init__.py b/aiorwlock/__init__.py index 82a4838..8b1164f 100644 --- a/aiorwlock/__init__.py +++ b/aiorwlock/__init__.py @@ -3,7 +3,7 @@ from collections import deque from typing import Any, Deque, List, Tuple -__version__ = '1.3.0' +__version__ = "1.4.0" __all__ = ('RWLock',) diff --git a/setup.py b/setup.py index 483c54a..67b850d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(f): def read_version(): - regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'") + regexp = re.compile(r'^__version__\W*=\W*"([\d.abrc]+)"') init_py = os.path.join( os.path.dirname(__file__), 'aiorwlock', '__init__.py' )