From cf35965466743b2a00384bf5e484fb737dcd9b85 Mon Sep 17 00:00:00 2001 From: Bertrand Bordage Date: Sun, 19 Oct 2014 21:52:09 +0200 Subject: [PATCH] Version 0.7.0. --- CHANGELOG.rst | 6 ++++++ cachalot/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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__)