This commit is contained in:
Andrew Chen Wang 2020-09-16 13:54:07 +00:00
parent d24e3b37ca
commit 72be2c07b3
2 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,11 @@
Whats new in django-cachalot?
==============================
2.3.2
-----
- Cast memoryview objects to bytes to be able to pickle them (#163)
2.3.1
-----

View file

@ -1,4 +1,4 @@
VERSION = (2, 3, 1)
VERSION = (2, 3, 2)
__version__ = '.'.join(map(str, VERSION))
default_app_config = 'cachalot.apps.CachalotConfig'