Skip to content

Commit 7307e35

Browse files
committed
Up to 7.1
1 parent 0366db6 commit 7307e35

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG

+7
Original file line numberDiff line numberDiff line change
@@ -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+
18
7.0.2
29
- fixed .aggregate()
310
- fixed big memory usage during migrations

cacheops/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '7.0.2'
1+
__version__ = '7.1'
22
VERSION = tuple(map(int, __version__.split('.')))
33

44
from .simple import * # noqa

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='django-cacheops',
10-
version='7.0.2',
10+
version='7.1',
1111
author='Alexander Schepanovski',
1212
author_email='suor.web@gmail.com',
1313

0 commit comments

Comments
 (0)