Version 0.2.0

This commit is contained in:
Bertrand Bordage 2014-09-28 01:49:36 +02:00
parent 5c91cd4cb4
commit 73d38b5d72
2 changed files with 21 additions and 1 deletions

20
CHANGELOG.rst Normal file
View file

@ -0,0 +1,20 @@
Whats new in django-cachalot?
==============================
0.2
---
- Adds a test suite
- Fixes invalidation for data creation/deletion
- Stops caching on queries defining ``select`` or ``where`` arguments
with ``QuerySet.extra``
0.1
---
Prototype simply caching all SQL queries reading the database
and trying to invalidate them when SQL queries modify the database.
Has issues invalidating deletions and creations.
Also caches ``QuerySet.extra`` queries but cant reliably invalidate them.
No transaction support, no test, no multi-database support, etc.

View file

@ -1,2 +1,2 @@
__version__ = (0, 1, 0, 'post')
__version__ = (0, 2, 0)
version_string = '.'.join(str(n) for n in __version__)