diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 63f597d..34b943c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,10 @@ Release Notes ============= +1.2.4 +----- +* Fix domain validation so it's called after the pre_save signal + 1.2.3 ----- * Fix a broken test, due to a django uniqueness constraint in 1.9 diff --git a/multisite/__init__.py b/multisite/__init__.py index c5e8b2e..8fcd00a 100644 --- a/multisite/__init__.py +++ b/multisite/__init__.py @@ -1,3 +1,3 @@ from .threadlocals import SiteDomain, SiteID -VERSION = "l.2.3" +VERSION = "l.2.4" diff --git a/setup.py b/setup.py index d5a2c1c..1006025 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def long_description(): setup(name='django-multisite', - version='1.2.3', + version='1.2.4', description='Serve multiple sites from a single Django application', long_description=long_description(), author='Leonid S Shestera',