Skip to content

Commit 2423809

Browse files
committed
1.5.0
1 parent a835f5e commit 2423809

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

CHANGES.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
Changelog
33
=========
44

5-
1.4.1 (unreleased)
5+
1.5.0 (2026-03-05)
66
------------------
77

8-
*
8+
* Drop Django support < 4.2
9+
* Add Django 6.0 support
10+
* Fix UUID serialization
11+
* Include cuse middleware inside tracking fields as it is no longer maintained
912

1013
1.4.0 (2023-06-15)
1114
------------------

README.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,15 @@ A Django app allowing the tracking of objects field in the admin site.
1414
Requirements
1515
------------
1616

17-
* Django 2.2: See older versions for earlier version of Django.
18-
* django-cuser: Only if you want to track which user made the modifications.
17+
* Django 4.2: See older versions for earlier version of Django.
18+
* Add the middleware to also store the current user::
19+
20+
MIDDLEWARE = (
21+
...
22+
"tracking_fields.middleware.cuser.CuserMiddleware",
23+
...
24+
)
25+
1926

2027
Quick start
2128
-----------

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(*parts):
1313

1414
setup(
1515
name='django-tracking-fields',
16-
version='1.4.1dev',
16+
version='1.5.0',
1717
packages=find_packages(),
1818
include_package_data=True,
1919
license='GPLv3+',
@@ -34,8 +34,13 @@ def read(*parts):
3434
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
3535
'Operating System :: OS Independent',
3636
'Programming Language :: Python',
37-
'Programming Language :: Python :: 3.5',
38-
'Programming Language :: Python :: 3.6',
37+
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
39+
'Programming Language :: Python :: 3.10',
40+
'Programming Language :: Python :: 3.11',
41+
'Programming Language :: Python :: 3.12',
42+
'Programming Language :: Python :: 3.13',
43+
'Programming Language :: Python :: 3.14',
3944
'Topic :: Internet :: WWW/HTTP',
4045
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4146
],

0 commit comments

Comments
 (0)