From 83742091881d0e0e0b7d8ace59d623af3cf9a15b Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 9 Sep 2021 06:09:39 +0000 Subject: [PATCH] 4.0.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 10 ++++++++++ autoprop/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c47c278..ffa2a8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v4.0.0 (2021-09-09) +### Feature +* Add overwrite/automatic/manual cache policies ([`a013b69`](https://github.com/kalekundert/autoprop/commit/a013b69e1222918e776899d81eab29417eab0af0)) + +### Breaking +* remove property/object/class cache policies. ([`a013b69`](https://github.com/kalekundert/autoprop/commit/a013b69e1222918e776899d81eab29417eab0af0)) + +### Documentation +* Describe how to manually clear the cache ([`7a526e7`](https://github.com/kalekundert/autoprop/commit/7a526e73b9c9ca39d9813cdeb10abba8d1f73059)) + ## v3.0.0 (2021-05-27) ### Feature * Change default cache policy to 'property' ([`a3baec5`](https://github.com/kalekundert/autoprop/commit/a3baec55ceee721c9090dc2a5639ac686eb6170e)) diff --git a/autoprop/__init__.py b/autoprop/__init__.py index cc1d289..aadd6b1 100644 --- a/autoprop/__init__.py +++ b/autoprop/__init__.py @@ -21,7 +21,7 @@ get_cached_attr, set_cached_attr, del_cached_attr, ) -__version__ = '3.0.0' +__version__ = '4.0.0' # Hack to make the module directly usable as a decorator. Only works for # python 3.5 or higher. See this Stack Overflow post: