From 310b6ccc88111793acf76b837b368b0262038a0b Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Sun, 12 Apr 2020 18:04:29 +0200 Subject: [PATCH] Bump to version 1.1.2 --- docs/changelog.rst | 7 +++++++ shop/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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'