Skip to content

Commit

Permalink
release 0.13.0 (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
northernSage authored Apr 13, 2024
1 parent b63bd00 commit 8949ab0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 0.13.0
--------------

Unreleased
Released 2024-04-13

- default ``hashlib.md5`` may not be available in FIPS builds. We
now do not access it at import time on ``FileSystemCache``so developers
Expand Down
2 changes: 1 addition & 1 deletion src/cachelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"DynamoDbCache",
"MongoDbCache",
]
__version__ = "0.12.0"
__version__ = "0.13.0"
2 changes: 2 additions & 0 deletions src/cachelib/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ class FileSystemCache(BaseCache):
:param mode: the file mode wanted for the cache files, default 0600
:param hash_method: Default hashlib.md5. The hash method used to
generate the filename for cached results.
Default is lazy loaded and can be overriden by
seeting `_default_hash_method`
"""

#: used for temporary files by the FileSystemCache
Expand Down

0 comments on commit 8949ab0

Please sign in to comment.