diff --git a/.gitignore b/.gitignore index 8892a5d..9d585ed 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ __pycache__ build dist housekeeping.egg-info/ +.tox .*.swp diff --git a/NEWS.md b/NEWS.md index 95df138..147aed2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,14 @@ # Housekeeping Releases +## Housekeeping 1.1 (23-July-2023) + +* Subclasses of a deprecated or moved class can now set + `housekeeping_skip_warning = True` to avoid emitting a warning. + +* Warning class values can now be provided as functions that returning a + warning class. + + ## Housekeeping 1.0 (12-May-2023) * Initial public release diff --git a/housekeeping/_version.py b/housekeeping/_version.py index d074859..ad96e4a 100644 --- a/housekeeping/_version.py +++ b/housekeeping/_version.py @@ -6,7 +6,7 @@ # # (Major, Minor, Micro, alpha/beta/rc/final, Release Number, Released) # -VERSION = (1, 0, 0, 'final', 0, True) +VERSION = (1, 1, 0, 'final', 0, True) def get_version_string() -> str: