Skip to content

Commit

Permalink
Version 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandBordage committed Apr 17, 2015
1 parent 3798a1c commit 9d2aba8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,17 @@
What’s new in django-cachalot?
==============================

1.0.1
-----

- Fixes an invalidation issue discovered by Helen Warren that was occurring
when updating a ``ManyToManyField`` after executing using ``.exclude``
on that relation. For example, ``Permission.objects.all().delete()`` was not
invalidating ``User.objects.exclude(user_permissions=None)``
- Fixes a ``UnicodeDecodeError`` introduced with python-memcached 1.54
- Adds a ``post_invalidation`` signal


1.0.0
-----

Expand Down
2 changes: 1 addition & 1 deletion cachalot/__init__.py
@@ -1,2 +1,2 @@
__version__ = (1, 0, 0)
__version__ = (1, 0, 1)
version_string = '.'.join(str(n) for n in __version__)

0 comments on commit 9d2aba8

Please sign in to comment.