diff --git a/docs/changelog.rst b/docs/changelog.rst index d1c0c8827..9eca27363 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,11 @@ Changelog for django-SHOP ========================= +1.2.4 +===== +* Fix setup.py to proper versionsioning. + + 1.2.3 ===== * Fix API change in library ``ipware`` version 3: Replace ``get_ip`` against ``get_client_ip``. diff --git a/shop/__init__.py b/shop/__init__.py index df2376a6d..c106a46e5 100644 --- a/shop/__init__.py +++ b/shop/__init__.py @@ -14,6 +14,6 @@ 10. python setup.py sdist 11. twine upload dist/django-shop-{new version}.tar.gz """ -__version__ = '1.2.3' +__version__ = '1.2.4' default_app_config = 'shop.apps.ShopConfig'