Skip to content

Commit a70d962

Browse files
Merge branch 'master' into fix_pendingdeprecationwarning
2 parents 1b323ab + fb3125e commit a70d962

5 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/workflows/auto-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Dependabot metadata
1414
id: metadata
15-
uses: dependabot/fetch-metadata@v2.2.0
15+
uses: dependabot/fetch-metadata@v2.3.0
1616
with:
1717
github-token: "${{ secrets.GITHUB_TOKEN }}"
1818
- name: Enable auto-merge for Dependabot PRs

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ CHANGES
44

55
.. towncrier release notes start
66
7+
2.0.5 (2025-03-16)
8+
==================
9+
10+
- Fixed a memory leak on exceptions and minor performance improvement.
11+
712
2.0.4 (2023-07-27)
813
==================
914

async_lru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from typing_extensions import Self
3030

3131

32-
__version__ = "2.0.4"
32+
__version__ = "2.0.5"
3333

3434
__all__ = ("alru_cache",)
3535

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r requirements.txt
22

3-
flake8==7.1.1
3+
flake8==7.1.2
44
flake8-bandit==4.1.1
55
flake8-bugbear==24.12.12
66
flake8-import-order==0.18.2
77
flake8-requirements==2.2.1
8-
mypy==1.14.1; implementation_name=="cpython"
8+
mypy==1.15.0; implementation_name=="cpython"

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-e .
22

3-
coverage==7.6.10
4-
pytest==8.3.4
5-
pytest-asyncio==0.25.2
3+
coverage==7.7.1
4+
pytest==8.3.5
5+
pytest-asyncio==0.26.0
66
pytest-cov==6.0.0
77
pytest-timeout==2.3.1

0 commit comments

Comments
 (0)