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'