From 4ee137e0e05aaed202c3e1dc7165e91865cc8ee5 Mon Sep 17 00:00:00 2001 From: Josh Smeaton Date: Fri, 13 Sep 2019 15:53:22 +1000 Subject: [PATCH] Bump version 1.0.1 --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/subscriptions/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14ed5b9..4956004 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.1 (2019-09-13) + +- SubscriptionState.choices is now sorted, so that the order is consistent between python versions, + and migrations are not generated by applications. + ## v1.0.0 (2019-07-03) - **Breaking Change** `suspended_timeout` now triggers for subscriptions in SUSPENDED state that are diff --git a/pyproject.toml b/pyproject.toml index 8b48d94..afc01b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ readme = "README.md" homepage = "http://github.com/kogan/" repository = "http://github.com/kogan/django-subscriptions/" documentation = "http://github.com/kogan/django-subscriptions/" -version = "1.0.0" +version = "1.0.1" description = "A django package for managing subscription states" license = "BSD-3-Clause" authors = [ diff --git a/src/subscriptions/__init__.py b/src/subscriptions/__init__.py index 5becc17..5c4105c 100644 --- a/src/subscriptions/__init__.py +++ b/src/subscriptions/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.0.1"