diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8c5b6a3..54c0f38 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ What’s new in django-cachalot? ============================== +0.7.0 +----- + +- Adds thread-safety +- Optimizes the amount of cache queries during transaction + 0.6.0 ----- diff --git a/cachalot/__init__.py b/cachalot/__init__.py index ebfbac8..37e9975 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -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__)