Skip to content

Commit

Permalink
Up to 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Suor committed Aug 11, 2015
1 parent 554d5c3 commit e310e94
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
@@ -1,3 +1,19 @@
2.4
- added @decorator_tag to easily create cached template tags
- create redis client lazily
- let invalidate @cached_view()
- support template responses used by generic CBV
- support argumentless no parentheses form for @cached and @cached_view
- removed unneeded invalidation calls in .bulk_create()
- allow decorating built-in and external functions
- added .cached_call() to simple and file cache
- added key_func argument to @cached_as()
- check that timeout is specified in CACHEOPS setting
- fixed m2m invalidation on reverse changes
- fixed passing kwargs in @cached_as()
- fixed @cached with no parentheses
- fixed .bulk_create() API in Django 1.4

2.3.2
- made cacheops invalidate before other post_* signals (Emil Stenström)
- fixed invalidation on proxy/base model changes
Expand Down
2 changes: 1 addition & 1 deletion cacheops/__init__.py
@@ -1,4 +1,4 @@
VERSION = (2, 3, 2)
VERSION = (2, 4)
__version__ = '.'.join(map(str, VERSION if VERSION[-1] else VERSION[:2]))


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@

setup(
name='django-cacheops',
version='2.3.2',
version='2.4',
author='Alexander Schepanovski',
author_email='suor.web@gmail.com',

Expand Down

0 comments on commit e310e94

Please sign in to comment.