Skip to content

Commit

Permalink
Merge pull request #296 from jsocol/release/v4.1
Browse files Browse the repository at this point in the history
Release v4.1
  • Loading branch information
jsocol authored Jul 24, 2023
2 parents bb41cc4 + c3794f8 commit a2bfe2b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
====

Expand Down
2 changes: 1 addition & 1 deletion django_ratelimit/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit a2bfe2b

Please sign in to comment.