From 0127d6c0336721c0700eeb7a6da83a84aebb04ab Mon Sep 17 00:00:00 2001 From: Roald Nefs Date: Fri, 19 Feb 2021 21:36:19 +0100 Subject: [PATCH] chore: bump version to 0.5.0 (#17) Signed-off-by: Roald Nefs --- CHANGELOG.md | 5 ++++- docs/conf.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ed506..6614f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes in **django-sms** are documented below. ## [Unreleased] + +## [0.5.0] ### Added - The **sms.backends.twilio.SmsBackend** to send text messages using [Twilio](https://twilio.com/) ([#7](https://github.com/roaldnefs/django-sms/issues/7)). @@ -24,7 +26,8 @@ All notable changes in **django-sms** are documented below. ### Added - This `CHANGELOG.md` file to be able to list all notable changes for each version of **django-sms**. -[Unreleased]: https://github.com/roaldnefs/django-sms/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/roaldnefs/django-sms/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/roaldnefs/django-sms/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/roaldnefs/django-sms/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/roaldnefs/django-sms/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/roaldnefs/django-sms/compare/v0.1.0...v0.2.0 diff --git a/docs/conf.py b/docs/conf.py index 53c877d..b516399 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ project = 'django-sms' copyright = '2021, Roald Nefs' author = 'Roald Nefs' -release = '0.4.0' +release = '0.5.0' extensions = ['m2r2'] templates_path = ['_templates'] diff --git a/setup.py b/setup.py index 2f4091f..555d70f 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def long_description() -> str: setup( name='django-sms', - version='0.4.0', + version='0.5.0', url="https://github.com/django-enterprise/django-sms", description='A Django app for sending SMS with interchangeable backends.', long_description=long_description(), @@ -31,7 +31,7 @@ def long_description() -> str: platforms='any', zip_safe=False, classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', 'Framework :: Django :: 2.2',