From 6df019553a3d048d17edcc75b3bfc21fdb1b7662 Mon Sep 17 00:00:00 2001 From: Bertrand Bordage Date: Tue, 28 Oct 2014 19:08:50 +0100 Subject: [PATCH] Version 0.8.1. --- CHANGELOG.rst | 6 ++++++ cachalot/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b4000b0..ddbd64b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ What’s new in django-cachalot? ============================== +0.8.1 +----- + +- Fixes an issue with pip if Django is not yet installed + + 0.8.0 ----- diff --git a/cachalot/__init__.py b/cachalot/__init__.py index 856964c..97f87d1 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,2 +1,2 @@ -__version__ = (0, 8, 0, 'post') +__version__ = (0, 8, 1) version_string = '.'.join(str(n) for n in __version__)