From 56cba04ab539039d28f6721a7e374e7c025b2074 Mon Sep 17 00:00:00 2001 From: tdruez Date: Thu, 5 Mar 2026 19:43:47 +1300 Subject: [PATCH] chore: bump version to 0.9.1 Signed-off-by: tdruez --- CHANGELOG.rst | 6 ++++++ django_altcha/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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"