This commit is contained in:
Andrew-Chen-Wang 2021-04-01 13:52:44 -04:00
parent 6826ec6e4d
commit 76cb929cf5
2 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,11 @@
Whats new in django-cachalot?
==============================
2.3.5
-----
- Fix cachalot_disabled (#174)
2.3.4
-----

View file

@ -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"