diff --git a/docs/changelog.rst b/docs/changelog.rst index 0897d55..1a55d35 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +0.7.6 +----- + +* Patched ``set_kwargs`` to override the key name of the slug when it is configured by the detail view's ``slug_field`` setting + 0.7.5 ----- diff --git a/docs/conf.py b/docs/conf.py index 7e68217..7899591 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -44,16 +44,16 @@ # General information about the project. project = u'django-bakery' -copyright = u'2014, Los Angeles Times Data Desk' +copyright = u'2015, Los Angeles Times Data Desk' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.7.5' +version = '0.7.6' # The full version, including alpha/beta/rc tags. -release = '0.7.5' +release = '0.7.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 3a244e2..4c68334 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def run(self): setup( name='django-bakery', - version='0.7.5', + version='0.7.6', description='A set of helpers for baking your Django site out as flat files', author='The Los Angeles Times Data Desk', author_email='datadesk@latimes.com',