Skip to content

Commit f016614

Browse files
Merge pull request #156 from django-commons/release/0.9.0
Release v0.9.0
2 parents f61e7a4 + 98940e0 commit f016614

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

cookie_consent/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.0"
1+
__version__ = "0.9.0"

docs/changelog.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22
Changelog
33
=========
44

5+
0.9.0 (2025-09-28)
6+
------------------
7+
8+
Maintenance and bugfix release.
9+
10+
**💥 Breaking changes**
11+
12+
* Dropped support for Python 3.8 (end-of-life).
13+
* Dropped support for Python 3.9 (soon end-of-life).
14+
15+
**New features**
16+
17+
* [#114] You can now customize the redirect behaviour after accepting/declining cookies,
18+
using the new ``COOKIE_CONSENT_SUCCESS_URL`` setting.
19+
* The admin now displays a warning for cookie groups that have no cookies in them.
20+
21+
**Bugfixes**
22+
23+
* [#135] Make cookie parsing and serialization more robust.
24+
25+
**Project maintenance**
26+
27+
* Transferred the package from the jazzband Github organization to django-commons, and
28+
updated all community-related documents like the code of conduct.
29+
* Updated the package metadata to latest format.
30+
* Bumped minimum required setuptools version to build the package.
31+
* Replaced black and isort with Ruff for linting and code-formatting duties.
32+
* Improved the test suite.
33+
* The PyPI and NPM packages are now automatically published with Trusted Publishing,
34+
enhancing supply-chain security.
35+
536
0.8.0 (2025-05-30)
637
------------------
738

js/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-cookie-consent",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "Frontend code for django-cookie-consent",
55
"main": "lib/index.js",
66
"type": "module",

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[version]
2-
current = "0.8.0"
2+
current = "0.9.0"
33
regex = '''
44
(?P<major>\d+)
55
\.

0 commit comments

Comments
 (0)