From 870065a0a8713ef4d682526d317b43bf888d6b7e Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Mon, 11 Jan 2021 10:57:55 +0100 Subject: [PATCH] 0.9.6pre --- CHANGES | 5 +++++ docs/conf.py | 2 +- rosetta/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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"