Version 0.8.0.

This commit is contained in:
Bertrand Bordage 2014-10-22 00:37:01 +02:00
parent 5a4f0a4f7a
commit f26f0f8635
4 changed files with 12 additions and 3 deletions

View file

@ -1,6 +1,16 @@
Whats new in django-cachalot?
==============================
0.8.0
-----
- Adds multi-database support
- Adds invalidation when altering the DB schema using `migrate`, `syncdb`,
`flush`, `loaddata` commands (also invalidates South, if you use it)
- Small optimizations & simplifications
- Adds several tests
0.7.0
-----

View file

@ -1 +1,2 @@
include README.rst LICENSE AUTHORS.rst CHANGELOG.rst requirements.txt
recursive-include *.json

View file

@ -150,9 +150,7 @@ What still needs to be done
For version 1.0
...............
- Write tests for complex multi-databases scenarii
- Write tests for `multi-table inheritance <https://docs.djangoproject.com/en/1.7/topics/db/models/#multi-table-inheritance>`_
- Add invalidation on migrations in Django 1.7 (& South?)
In a more distant future
........................

View file

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