From c9ac4080d2d751987597c2464e25ee5e7b849218 Mon Sep 17 00:00:00 2001 From: Bertrand Bordage Date: Fri, 2 Jun 2017 23:03:45 +0200 Subject: [PATCH] Partially reverts 2cf0d65 from #68. --- CHANGELOG.rst | 5 ----- benchmark/conditions.rst | 2 +- cachalot/__init__.py | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 177b00e..43eaac6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,11 +1,6 @@ What’s new in django-cachalot? ============================== -1.4.2 ------ - -- Fixes cache in CachalotPanel - 1.4.1 ----- diff --git a/benchmark/conditions.rst b/benchmark/conditions.rst index f9d5085..561fe54 100644 --- a/benchmark/conditions.rst +++ b/benchmark/conditions.rst @@ -7,7 +7,7 @@ Disk INTEL SSDSC2CW06 Linux distribution Ubuntu 16.04 xenial Python 3.5.2 Django 1.10.2 -cachalot 1.4.2 +cachalot 1.4.1 sqlite 3.11.0 PostgreSQL 9.6.0 MySQL 5.7.15 diff --git a/cachalot/__init__.py b/cachalot/__init__.py index bf42e16..c17470b 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 4, 2) +VERSION = (1, 4, 1) __version__ = '.'.join(map(str, VERSION)) default_app_config = 'cachalot.apps.CachalotConfig'