diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7d31c7f..e47fc68 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +v0.9.1 (2026-03-05) +------------------- + +- fix: replace altcha.i18n.js bundle by proper dist_i18n/all.js + https://github.com/aboutcode-org/django-altcha/issues/28 + v0.9.0 (2026-01-05) ------------------- diff --git a/django_altcha/__init__.py b/django_altcha/__init__.py index f24f424..10e384c 100644 --- a/django_altcha/__init__.py +++ b/django_altcha/__init__.py @@ -24,7 +24,7 @@ import altcha -__version__ = "0.9.0" +__version__ = "0.9.1" VERSION = __version__ # Set to `False` to skip Altcha validation altogether. diff --git a/pyproject.toml b/pyproject.toml index 32750b2..418fcd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-altcha" -version = "0.9.0" +version = "0.9.1" description = "Django field and widget for Altcha CAPTCHA." readme = "README.md" license = "MIT"