Skip to content

Commit 8949ab0

Browse files
authored
release 0.13.0 (#377)
1 parent b63bd00 commit 8949ab0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Version 0.13.0
22
--------------
33

4-
Unreleased
4+
Released 2024-04-13
55

66
- default ``hashlib.md5`` may not be available in FIPS builds. We
77
now do not access it at import time on ``FileSystemCache``so developers

src/cachelib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
"DynamoDbCache",
2020
"MongoDbCache",
2121
]
22-
__version__ = "0.12.0"
22+
__version__ = "0.13.0"

src/cachelib/file.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ class FileSystemCache(BaseCache):
4040
:param mode: the file mode wanted for the cache files, default 0600
4141
:param hash_method: Default hashlib.md5. The hash method used to
4242
generate the filename for cached results.
43+
Default is lazy loaded and can be overriden by
44+
seeting `_default_hash_method`
4345
"""
4446

4547
#: used for temporary files by the FileSystemCache

0 commit comments

Comments
 (0)