diff --git a/CHANGELOG b/CHANGELOG index e18399a..f4bae39 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,20 @@ Change Log UNRELEASED ========== +v4.1 +==== + +Additions: +---------- + +- Add RATELIMITE_HASH_ALGORITHM setting (#282, #285) + +Minor changes: +-------------- + +- Fixed links in docs (#277) +- Test on Django 4.2 (#284) + v4.0 ==== diff --git a/django_ratelimit/__init__.py b/django_ratelimit/__init__.py index 8069e33..a94a8cf 100644 --- a/django_ratelimit/__init__.py +++ b/django_ratelimit/__init__.py @@ -1,4 +1,4 @@ -VERSION = (4, 0, 0) +VERSION = (4, 1, 0) __version__ = '.'.join(map(str, VERSION)) ALL = (None,) # Sentinel value for all HTTP methods. diff --git a/docs/conf.py b/docs/conf.py index 3d39730..506c12f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '4.0' +version = '4.1' # The full version, including alpha/beta/rc tags. -release = '4.0.0' +release = '4.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index fca95f8..ba4f103 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-ratelimit" -version = "4.0.0" +version = "4.1.0" authors = [{name = "James Socol", email = "me@jamessocol.com"}] requires-python = ">= 3.7" license = {file = "LICENSE"}