diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c8b9d67..0fb1f3d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog ========= +1.0.1 (2024-07-25) +================== + +Minor bugfix + +* [#16] Fixed redirect_to feature in the admin login + 1.0.0 (2024-02-05) ================== diff --git a/README.rst b/README.rst index 0157121..ef7932f 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Maykin 2FA ========== -:Version: 1.0.0 +:Version: 1.0.1 :Source: https://github.com/maykinmedia/maykin-2fa :Keywords: django, two factor, multi factor auth, mfa diff --git a/docs/conf.py b/docs/conf.py index dcb3640..65a1904 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "1.0.0" +release = "1.0.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index c1ecf26..3caed7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maykin_2fa" -version = "1.0.0" +version = "1.0.1" description = "An opinionated integration of django-two-factor-auth in the Django admin interface." authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -81,7 +81,7 @@ markers = [ ] [tool.bumpversion] -current_version = "1.0.0" +current_version = "1.0.1" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},