From 323c054078c938a7c45000be47adf8fea1059080 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Mar 2023 03:32:01 +0000 Subject: [PATCH] chore(master): release 4.0.0 --- docs/CHANGELOG.md | 27 +++++++++++++++++++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 825c32f..0b89c9e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1 +1,28 @@ # Changelog + +## [4.0.0](https://github.com/cdriehuys/django-rest-email-auth/compare/v3.0.3...v4.0.0) (2023-03-25) + + +### ⚠ BREAKING CHANGES + +* Support Django 4.1 + +### Features + +* Customizable email subjects. ([c2bf548](https://github.com/cdriehuys/django-rest-email-auth/commit/c2bf548873c74fa8975597f30dcaa778182f2f1d)), closes [#96](https://github.com/cdriehuys/django-rest-email-auth/issues/96) +* Support Django 4.0 ([1ad8a53](https://github.com/cdriehuys/django-rest-email-auth/commit/1ad8a53b6e5a9f792e68b01b4fc65789d23cadec)), closes [#97](https://github.com/cdriehuys/django-rest-email-auth/issues/97) +* Support Django 4.1 ([ea261d0](https://github.com/cdriehuys/django-rest-email-auth/commit/ea261d0f75f2fb89f2a558b1b82dd2387d7b885e)) + + +### Bug Fixes + +* Update tests for modern Django versions. ([c69ac1d](https://github.com/cdriehuys/django-rest-email-auth/commit/c69ac1d6c1b6e61a7e77e43dbcd62a385e02ab21)) + + +### Documentation + +* Fix build badge in README ([406ffd3](https://github.com/cdriehuys/django-rest-email-auth/commit/406ffd39213ef9ced31aea4c589e90488a33b74c)) +* Update Read the Docs configuration ([f1516af](https://github.com/cdriehuys/django-rest-email-auth/commit/f1516afbaf7b163a3289348a7185adbd259eb3bc)) +* Use autogenerated changelog ([52d9d45](https://github.com/cdriehuys/django-rest-email-auth/commit/52d9d45464425eb1748ea78f7bc307ba41f808d9)) + +## Changelog diff --git a/pyproject.toml b/pyproject.toml index 34d0869..4ec8a4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ exclude = ''' [tool.poetry] name = "django-rest-email-auth" -version = "3.0.3" +version = "4.0.0" description = "Django app for email based authentication and registration via a REST API." authors = ["Chathan Driehuys "] license = "MIT" diff --git a/setup.py b/setup.py index dfb11da..63868b8 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def get_description(): setup( # Package meta-data name="django-rest-email-auth", - version="3.0.3", + version="4.0.0", description="Django app for email based authentication and registration.", long_description=get_description(), author="Chathan Driehuys",