diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0fb1f3d..fda94fe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog ========= +1.0.2 (2025-01-16) +================== + +Minor fix + +* Add possibility to override the error message in the login template shown when the user is already authenticated. + 1.0.1 (2024-07-25) ================== diff --git a/README.rst b/README.rst index ef7932f..238a278 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ Maykin 2FA ========== -:Version: 1.0.1 +:Version: 1.0.2 :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 65a1904..d142c0e 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.1" +release = "1.0.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 3caed7a..e62ad00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maykin_2fa" -version = "1.0.1" +version = "1.0.2" 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.1" +current_version = "1.0.2" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"}, diff --git a/setup.cfg b/setup.cfg index 8c5866b..80f4618 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ -# 3rd party configuration +[bumpversion] +current_version = 1.0.2 [flake8] -max-line-length=88 -exclude=env,.tox,doc +max-line-length = 88 +exclude = env,.tox,doc