From d4cc29208a7bf9c1458c7758c408f47e9512be92 Mon Sep 17 00:00:00 2001 From: Stefan Foulis Date: Mon, 27 Dec 2021 23:22:51 +0100 Subject: [PATCH] Release 0.5.0 --- .github/workflows/ci.yml | 4 ++-- CHANGELOG.rst | 6 ++++++ sendsms/__init__.py | 2 +- setup.py | 1 + 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c6385d..1b05058 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,10 +3,10 @@ name: Django Send SMS Build on: push: branches: - - master + - main pull_request: branches: - - master + - main jobs: build: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7c17524..02be0a9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ CHANGELOG ========= +0.5.0 (2021-12-27) +------------------ + +* Support for django 3.x and django 4.0 + + 0.4.0 (2019-09-15) ------------------ diff --git a/sendsms/__init__.py b/sendsms/__init__.py index 3ed44bb..f41e6ab 100644 --- a/sendsms/__init__.py +++ b/sendsms/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __version_info__ = { "major": 0, - "minor": 4, + "minor": 5, "micro": 0, "releaselevel": "final", "serial": 1, diff --git a/setup.py b/setup.py index b9b27f7..58205eb 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,7 @@ platforms=["OS Independent"], description="A simple API to send SMS messages.", long_description=open("README.rst").read(), + long_description_content_type="text/x-rst", author="Stefan Foulis", author_email="stefan@foulis.ch", maintainer="Stefan Foulis",