Skip to content

Commit 374cd45

Browse files
authored
Version 0.4.10 (#16)
1 parent 855179a commit 374cd45

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.10] 2026-02-09
6+
### Fixed
7+
- Disk cache custom keywords arguments for cache filename.
8+
59
## [0.4.9] 2026-02-06
610
### Fixed
711
- `Version` now ignores buildmetadata when comparing versions.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ keywords:
1717
- tools
1818
- utilities
1919
license: MIT
20-
version: 0.4.9
21-
date-released: '2026-02-06'
20+
version: 0.4.10
21+
date-released: '2026-02-09'

src/pythonwrench/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__license__ = "MIT"
1010
__maintainer__ = "Étienne Labbé (Labbeti)"
1111
__status__ = "Development"
12-
__version__ = "0.4.9"
12+
__version__ = "0.4.10"
1313

1414

1515
# Re-import for language servers

src/pythonwrench/disk_cache.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ def _disk_cache_wrapper(*args: P.args, **kwargs: P.kwargs) -> T:
441441
if cache_fname_fmt_args is None or argname in cache_fname_fmt_args
442442
}
443443
kwds.update(inputs_kwds)
444+
kwds.update(kwargs)
444445

445446
cache_fname = cache_fname_fmt(**kwds)
446447
cache_fpath = cache_fn_dpath.joinpath(cache_fname)

0 commit comments

Comments
 (0)