From 093d2f11ea53455584715eb05b6b6f299b1eefa7 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Wed, 20 May 2015 14:28:59 -0700 Subject: [PATCH 1/4] Fix copy pasta for #178 --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f918e71179..4bb7c9ff09 100644 --- a/README.rst +++ b/README.rst @@ -15,7 +15,7 @@ Badges :target: https://pypi.python.org/pypi/dj-stripe/ .. image:: https://badges.gitter.im/Join Chat.svg - :target: https://gitter.im/audreyr/cookiecutter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge + :target: https://gitter.im/pydanny/dj-stripe?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge Django + Stripe Made Easy From a2064924379d9db0735140756ca87fd276e42dc6 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Mon, 25 May 2015 16:28:29 -0700 Subject: [PATCH 2/4] Version bump --- HISTORY.rst | 3 ++- djstripe/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 71ff64a241..f7d53936b1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,9 +3,10 @@ History ======= -0.5.0 (2015-05-??) +0.5.0 (2015-05-25) --------------------- +* Began deprecation of support for Django 1.6 and lower. * Removed the StripeSubscriptionSignupForm * Removed ``djstripe.safe_settings``. Settings are now all located in ``djstripe.settings`` * ``DJSTRIPE_TRIAL_PERIOD_FOR_SUBSCRIBER_CALLBACK`` can no longer be a module string diff --git a/djstripe/__init__.py b/djstripe/__init__.py index 7d1657f5af..4ece7186f9 100644 --- a/djstripe/__init__.py +++ b/djstripe/__init__.py @@ -7,7 +7,7 @@ __summary__ = "Django + Stripe Made Easy" __uri__ = "https://github.com/pydanny/dj-stripe/" -__version__ = "0.4.0" +__version__ = "0.5.0" __author__ = "Daniel Greenfeld" __email__ = "pydanny@gmail.com" From e9c76321698d1f0f60840c8c2b235636ade96fd3 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Mon, 25 May 2015 16:31:31 -0700 Subject: [PATCH 3/4] Added trove classifiers for non-deprecated versions of Django --- HISTORY.rst | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f7d53936b1..3ab7bcee0e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,7 @@ History --------------------- * Began deprecation of support for Django 1.6 and lower. +* Added formal support for Django 1.8. * Removed the StripeSubscriptionSignupForm * Removed ``djstripe.safe_settings``. Settings are now all located in ``djstripe.settings`` * ``DJSTRIPE_TRIAL_PERIOD_FOR_SUBSCRIBER_CALLBACK`` can no longer be a module string diff --git a/setup.py b/setup.py index a1cec1f932..3aec95fb9c 100644 --- a/setup.py +++ b/setup.py @@ -59,11 +59,12 @@ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Framework :: Django', + 'Framework :: Django :: 1.7', + 'Framework :: Django :: 1.8', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', "Programming Language :: Python :: 2", - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', From e4c60e2ef3b1651a38ad00d4b3e36349ad49e13c Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Mon, 25 May 2015 16:43:32 -0700 Subject: [PATCH 4/4] Bump up the Two Scoops of Django version --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 4bb7c9ff09..e2d8229079 100644 --- a/README.rst +++ b/README.rst @@ -151,11 +151,11 @@ Follows Best Practices :name: Two Scoops Logo :align: center :alt: Two Scoops of Django - :target: http://twoscoopspress.org/products/two-scoops-of-django-1-6 + :target: http://twoscoopspress.org/products/two-scoops-of-django-1-8 -This project follows best practices as espoused in `Two Scoops of Django: Best Practices for Django 1.6`_. +This project follows best practices as espoused in `Two Scoops of Django: Best Practices for Django 1.8`_. -.. _`Two Scoops of Django: Best Practices for Django 1.6`: http://twoscoopspress.org/products/two-scoops-of-django-1-6 +.. _`Two Scoops of Django: Best Practices for Django 1.8`: http://twoscoopspress.org/products/two-scoops-of-django-1-8 Similar Projects ----------------