From d7a99cdf341d73ccbf3d0f2d49bb4d14e8a831aa Mon Sep 17 00:00:00 2001 From: botpub Date: Thu, 28 Jul 2022 18:06:19 +0000 Subject: [PATCH] Release Elevate 2.0.3 --- RELEASE.md | 7 ------- docs/changelog/index.rst | 9 +++++++++ pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 8ae81de..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,7 +0,0 @@ -Release type: patch - -- Add Django 4.0 support - - Add `ELEVATE_TOKEN_LENGTH` setting as `get_random_string` no longer has a default length -- Remove Django 3.1 from test matrix -- Remove Python 3.6 from test matrix -- No longer build wheel as universal as Python 2 is not supported diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index fb94408..dd120ad 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,6 +1,15 @@ Changelog ========= +2.0.3 - 2022-07-28 +------------------ + +- Add Django 4.0 support + - Add `ELEVATE_TOKEN_LENGTH` setting as `get_random_string` no longer has a default length +- Remove Django 3.1 from test matrix +- Remove Python 3.6 from test matrix +- No longer build wheel as universal as Python 2 is not supported + 2.0.2 - 2021-06-02 ------------------ diff --git a/pyproject.toml b/pyproject.toml index 106d1d1..9c2249e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "django-elevate" -version = "2.0.2" +version = "2.0.3" description = "Extra security for your sensitive pages" authors = ["Justin Mayer "] readme = "README.rst" diff --git a/setup.py b/setup.py index dba163b..08aff84 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -version = "2.0.2" +version = "2.0.3" install_requires = []