From 6b652222025047c6729f49722e58ffb7925525f8 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Sat, 11 Jan 2020 17:04:25 +0100 Subject: [PATCH] Bump to version 1.1.1 --- 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 652838737..125806f30 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,13 @@ Changelog for django-SHOP ========================= +1.1.1 +===== +* Fix: Rendering text for full text index raised an exception. +* Upgrade calls to djangorestframework API to support version 3.9 and later. +* Fix: Generating email during purchansing operation raised an exception. + + 1.1 === diff --git a/shop/__init__.py b/shop/__init__.py index 28b9b5c58..0a6bbcbb4 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' +__version__ = '1.1.1' default_app_config = 'shop.apps.ShopConfig'