From 672f928b17050270f4b43b6bd8af5967e9980574 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 30 May 2022 22:51:48 +0000 Subject: [PATCH] 4.1.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 7 +++++++ autoprop/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 388b7d1..df575f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v4.1.0 (2022-05-30) +### Feature +* Add decorator to explicitly ignore methods ([`1687e06`](https://github.com/kalekundert/autoprop/commit/1687e062421f76b6d497297779a3e7f3b30bd52d)) + +### Fix +* Handle undefined getters in error messages ([`f2bb9e5`](https://github.com/kalekundert/autoprop/commit/f2bb9e5b7586d5e09f3cc14690b6e15c1ab6863e)) + ## v4.0.2 (2021-09-15) ### Fix * Upgrade to signature_dispatch~=1.0 ([`453447a`](https://github.com/kalekundert/autoprop/commit/453447aecdd7ddc7ca9e7898d0f6b99ff4a073f0)) diff --git a/autoprop/__init__.py b/autoprop/__init__.py index 573cdd6..48afbef 100644 --- a/autoprop/__init__.py +++ b/autoprop/__init__.py @@ -21,7 +21,7 @@ get_cached_attr, set_cached_attr, del_cached_attr, ) -__version__ = '4.0.2' +__version__ = '4.1.0' # Hack to make the module directly usable as a decorator. Only works for # python 3.5 or higher. See this Stack Overflow post: