diff --git a/docs/changelog.rst b/docs/changelog.rst index 125806f30..31fa5ad93 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,13 @@ Changelog for django-SHOP ========================= +1.1.2 +===== +* Fix #802: ``CartItemSerializer`` raised an exception if field ``CartItem.extra`` was handled by + Django's internal Postgres ``JSONField``. +* Fix: In Django>2, rendering of OrderItem in Inline Admin did not work anymore. + + 1.1.1 ===== * Fix: Rendering text for full text index raised an exception. diff --git a/shop/__init__.py b/shop/__init__.py index 0a6bbcbb4..78ac06dea 100644 --- a/shop/__init__.py +++ b/shop/__init__.py @@ -17,6 +17,6 @@ 11. git commit -m 'Start with ' 12. git push """ -__version__ = '1.1.1' +__version__ = '1.1.2' default_app_config = 'shop.apps.ShopConfig'