diff --git a/docs/changelog.rst b/docs/changelog.rst index 46832ac26..6860e82d9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,11 @@ Changelog for django-SHOP ========================= +1.2.1 +===== +* In management command, make mandatory CMS page for rendering search results, recommended only. + + 1.2 === * Add support for Django-3.0. diff --git a/shop/__init__.py b/shop/__init__.py index 05986bd19..2f52b7d3f 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' +__version__ = '1.2.1' default_app_config = 'shop.apps.ShopConfig'