diff --git a/CHANGES b/CHANGES index 693c1be..08a2f7f 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,11 @@ Version History =============== +Version 0.9.6 (unreleased) +-------------------------- +* Remove 'providing_args' kwarg from signals instanciation (#250, thanks @mondeja) + + Version 0.9.5 ------------- * Fixed DeprecationWarning: invalid escape sequence (#234, Thanks @jayvdb) diff --git a/docs/conf.py b/docs/conf.py index 48b1fcf..9e43ee8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,7 @@ master_doc = 'index' # General information about the project. project = u'Django Rosetta' -copyright = u'2008 – 2020 Marco Bonetti and contributors' +copyright = u'2008 – 2021 Marco Bonetti and contributors' author = u'Marco Bonetti' diff --git a/rosetta/__init__.py b/rosetta/__init__.py index b106743..b53f81e 100644 --- a/rosetta/__init__.py +++ b/rosetta/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 9, 5) +VERSION = (0, 9, 6) default_app_config = "rosetta.apps.RosettaAppConfig"