Skip to content

Commit f322798

Browse files
committed
django 5.0 release
1 parent f1443fc commit f322798

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ The documentation can be found [here](https://django-computedfields.readthedocs.
103103

104104

105105
#### Changelog
106+
- 0.2.5
107+
- Django 5.0 & Python 3.12 support
108+
- Django 3.2 support dropped
106109
- 0.2.4
107110
- performance improvement: use OR for simple multi dependency query construction
108111
- performance improvement: better queryset narrowing for M2M lookups

computedfields/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.4'
1+
__version__ = '0.2.5'

docs/manual.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,9 @@ a similar feature in Django's ORM.
611611
Changelog
612612
---------
613613

614+
- 0.2.5
615+
- Django 5.0 & Python 3.12 support
616+
- Django 3.2 support dropped
614617
- 0.2.4
615618
- performance improvement: use OR for simple multi dependency query construction
616619
- performance improvement: better queryset narrowing for M2M lookups

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_version(path):
1818
packages=find_packages(exclude=['example']),
1919
include_package_data=True,
2020
install_requires=[
21-
'Django>=2.2,<5.1',
21+
'Django>=4.2,<5.1',
2222
'typing_extensions>=4.1',
2323
'django-fast-update'
2424
],
@@ -30,7 +30,7 @@ def get_version(path):
3030
author='netzkolchose',
3131
author_email='[email protected]',
3232
url='https://github.com/netzkolchose/django-computedfields',
33-
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.2.4.tar.gz',
33+
download_url='https://github.com/netzkolchose/django-computedfields/archive/0.2.5.tar.gz',
3434
keywords=['django', 'method', 'decorator',
3535
'autoupdate', 'persistent', 'field'],
3636
classifiers=[
@@ -40,7 +40,6 @@ def get_version(path):
4040
'Topic :: Database :: Front-Ends',
4141
'Topic :: Software Development :: Libraries',
4242
'Framework :: Django',
43-
'Framework :: Django :: 3.2',
4443
'Framework :: Django :: 4.2',
4544
'Framework :: Django :: 5.0',
4645
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)