diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cae82ba..ad6b4c4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,7 +7,7 @@ This document records all notable changes to This project adheres to `Semantic Versioning `_. -1.2.0 (2016-11-06) +1.2.1 (2016-11-06) ------------------ * The exported ``settings`` object is now an instance of ``dict`` subclass diff --git a/django_settings_export.py b/django_settings_export.py index f1e0d49..44cca34 100644 --- a/django_settings_export.py +++ b/django_settings_export.py @@ -8,7 +8,7 @@ from django.core.exceptions import ImproperlyConfigured -__version__ = '1.2.0' +__version__ = '1.2.1' VARIABLE_NAME = getattr(django_settings, diff --git a/setup.py b/setup.py index bbe7939..defbf61 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="django-settings-export", - version='1.2.0', + version='1.2.1', author="Jakub Roztocil", author_email="jakub@roztocil.co", description='This Django app allows you to export'