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 0366db6 commit 7307e35Copy full SHA for 7307e35
CHANGELOG
@@ -1,3 +1,10 @@
1
+7.1
2
+- support and test against Python 3.12 and Django 5.0
3
+- prevent dups in conjs and disjs by using proper data-structures (thx Sergey Prokopiev for a test)
4
+- unpin funcy major version
5
+- fixed conj keys TTL in Redis 7.x
6
+- updated and cleaned up tests
7
+
8
7.0.2
9
- fixed .aggregate()
10
- fixed big memory usage during migrations
cacheops/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '7.0.2'
+__version__ = '7.1'
VERSION = tuple(map(int, __version__.split('.')))
from .simple import * # noqa
setup.py
@@ -7,7 +7,7 @@
setup(
name='django-cacheops',
- version='7.0.2',
+ version='7.1',
11
author='Alexander Schepanovski',
12
author_email='suor.web@gmail.com',
13
0 commit comments