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',)