From 6b6afbe42df0a719d4b7eb0a7011137e37ad8fff Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Tue, 9 Nov 2021 15:49:01 +0200 Subject: [PATCH] Bump to 1.2.0 --- CHANGES.rst | 10 ++++++++-- aiorwlock/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 4fcfd89..3b47d58 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,14 @@ Changes ------- -1.1.0 (2021-9-27) -^^^^^^^^^^^^^^^^^ + +1.2.0 (2021-11-09) +^^^^^^^^^^^^^^^^^^ + +* Fix a bug that make concurrent writes possible under some (rare) conjunctions (#235) + +1.1.0 (2021-09-27) +^^^^^^^^^^^^^^^^^^ * Remove explicit loop usage in `asyncio.sleep()` call, make the library forward compatible with Python 3.10 diff --git a/aiorwlock/__init__.py b/aiorwlock/__init__.py index 98a37b3..1772c03 100644 --- a/aiorwlock/__init__.py +++ b/aiorwlock/__init__.py @@ -10,7 +10,7 @@ Future = asyncio.Future Task = asyncio.Task -__version__ = '1.1.0' +__version__ = '1.2.0' __all__ = ('RWLock',)