This commit is contained in:
Marco Bonetti 2021-01-11 10:57:55 +01:00
parent 8c5edbf6d9
commit 870065a0a8
3 changed files with 7 additions and 2 deletions

View file

@ -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)

View file

@ -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'

View file

@ -1,4 +1,4 @@
VERSION = (0, 9, 5)
VERSION = (0, 9, 6)
default_app_config = "rosetta.apps.RosettaAppConfig"