diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 54c0f38..b4000b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ----- diff --git a/MANIFEST.in b/MANIFEST.in index d692faf..13a7c49 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include README.rst LICENSE AUTHORS.rst CHANGELOG.rst requirements.txt +recursive-include *.json diff --git a/README.rst b/README.rst index f6e1068..99ba27f 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ -- Add invalidation on migrations in Django 1.7 (& South?) In a more distant future ........................ diff --git a/cachalot/__init__.py b/cachalot/__init__.py index 7e73b64..d59458f 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -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__)