From 4a41e08df09c852b007f590064873d33b1446799 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Sat, 16 May 2020 11:49:31 +0200 Subject: [PATCH] Bump to version 1.2 --- README.md | 9 +++++++-- shop_paypal/__init__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ba258c7..934efb4 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ This integrates PayPal for django-shop version 1.0 and above. ## Installation -for django-shop version 1.0.x: +for django-shop version 1.2.x: ``` -pip install djangoshop-paypal<1.1 +pip install djangoshop-paypal<1.3 ``` ## Configuration @@ -55,6 +55,11 @@ If a payment was rejected by PayPal, **djangoshop-paypal** redirects onto the CM ## Changes +### 1.2 +* Fix new PayPal requirement: Add additional costs not reflected in list of ordered items. +* Drop support for Django<2.1. +* Drop support for Python-2.7. + ### 1.0.1 * Fix #6: PayPal's create payment now is invoked by the server. diff --git a/shop_paypal/__init__.py b/shop_paypal/__init__.py index cd7ca49..64477cf 100644 --- a/shop_paypal/__init__.py +++ b/shop_paypal/__init__.py @@ -1 +1 @@ -__version__ = '1.0.1' +__version__ = '1.2'