Skip to content

Commit a2bfe2b

Browse files
authored
Merge pull request jsocol#296 from jsocol/release/v4.1
Release v4.1
2 parents bb41cc4 + c3794f8 commit a2bfe2b

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ Change Log
55
UNRELEASED
66
==========
77

8+
v4.1
9+
====
10+
11+
Additions:
12+
----------
13+
14+
- Add RATELIMITE_HASH_ALGORITHM setting (#282, #285)
15+
16+
Minor changes:
17+
--------------
18+
19+
- Fixed links in docs (#277)
20+
- Test on Django 4.2 (#284)
21+
822
v4.0
923
====
1024

django_ratelimit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (4, 0, 0)
1+
VERSION = (4, 1, 0)
22
__version__ = '.'.join(map(str, VERSION))
33

44
ALL = (None,) # Sentinel value for all HTTP methods.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '4.0'
51+
version = '4.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '4.0.0'
53+
release = '4.1.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "django-ratelimit"
7-
version = "4.0.0"
7+
version = "4.1.0"
88
authors = [{name = "James Socol", email = "me@jamessocol.com"}]
99
requires-python = ">= 3.7"
1010
license = {file = "LICENSE"}

0 commit comments

Comments
 (0)