mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-03-16 21:30:23 +00:00
Version 0.8.0.
This commit is contained in:
parent
5a4f0a4f7a
commit
f26f0f8635
4 changed files with 12 additions and 3 deletions
|
|
@ -1,6 +1,16 @@
|
|||
What’s 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
|
||||
-----
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
include README.rst LICENSE AUTHORS.rst CHANGELOG.rst requirements.txt
|
||||
recursive-include *.json
|
||||
|
|
|
|||
|
|
@ -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
|
||||
........................
|
||||
|
|
|
|||
|
|
@ -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__)
|
||||
|
|
|
|||
Loading…
Reference in a new issue