From 76cb929cf5d1b99ee77a9cc960e8c4511cdc9179 Mon Sep 17 00:00:00 2001 From: Andrew-Chen-Wang Date: Thu, 1 Apr 2021 13:52:44 -0400 Subject: [PATCH] v2.3.5 --- CHANGELOG.rst | 5 +++++ cachalot/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ad2d76d..19a86cf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ What’s new in django-cachalot? ============================== +2.3.5 +----- + +- Fix cachalot_disabled (#174) + 2.3.4 ----- diff --git a/cachalot/__init__.py b/cachalot/__init__.py index 58e8612..63521c1 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 3, 4) -__version__ = '.'.join(map(str, VERSION)) +VERSION = (2, 3, 5) +__version__ = ".".join(map(str, VERSION)) default_app_config = "cachalot.apps.CachalotConfig"