We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f57cdac commit d4b3903Copy full SHA for d4b3903
CHANGELOG
@@ -1,3 +1,8 @@
1
+7.2
2
+- support and test against Python 3.13 and Django 5.1/5.2 (thx to Stu Tomlinson)
3
+- updated md5 to set usedforsecurity for FIPS compliance (Logan Bibby)
4
+- skip ArrayField in exact conds
5
+
6
7.1
7
- support and test against Python 3.12 and Django 5.0
8
- prevent dups in conjs and disjs by using proper data-structures (thx Sergey Prokopiev for a test)
cacheops/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '7.1'
+__version__ = '7.2'
VERSION = tuple(map(int, __version__.split('.')))
from .simple import * # noqa
setup.py
@@ -7,7 +7,7 @@
setup(
9
name='django-cacheops',
10
- version='7.1',
+ version='7.2',
11
author='Alexander Schepanovski',
12
author_email='suor.web@gmail.com',
13
0 commit comments