Version 0.7.0.

This commit is contained in:
Bertrand Bordage 2014-10-19 21:52:09 +02:00
parent 941ef625fc
commit cf35965466
2 changed files with 7 additions and 1 deletions

View file

@ -1,6 +1,12 @@
Whats new in django-cachalot?
==============================
0.7.0
-----
- Adds thread-safety
- Optimizes the amount of cache queries during transaction
0.6.0
-----

View file

@ -1,4 +1,4 @@
from .settings import cachalot_settings
__version__ = (0, 6, 0, 'post')
__version__ = (0, 7, 0)
version_string = '.'.join(str(n) for n in __version__)