Skip to content

Commit

Permalink
Release v1.4.0 (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 20, 2024
1 parent acd3ffe commit 15cb1b4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion aiorwlock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand Down

0 comments on commit 15cb1b4

Please sign in to comment.