From a85030a6b8f185b0d987e8e4cc05aa4743beb1e6 Mon Sep 17 00:00:00 2001 From: Jakub Reczko Date: Thu, 16 Jun 2016 13:40:40 +0200 Subject: [PATCH] Increased major version --- README.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ad2cfbf..b567e9cb 100644 --- a/README.md +++ b/README.md @@ -731,6 +731,7 @@ new_price = utils.calculate_price(base_price, voucher, unit_price) ### Changelog +- **2016-06-16** - `1.1.0` - Added customer methods - **2016-06-08** - `1.0.0` - Release version - **2016-05-31** - `0.1.0` - First version: - Authentication diff --git a/setup.py b/setup.py index 4b368e1c..3031599e 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'voucherify')) -__version__ = '1.0.0' +__version__ = '1.1.0' __pypi_username__ = 'voucherify' __pypi_packagename__ = 'voucherify' __github_username__ = 'voucherifyio'