diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aa5eb42..ccf8a16 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ What’s new in django-cachalot? ============================== +2.3.2 +----- + +- Cast memoryview objects to bytes to be able to pickle them (#163) + 2.3.1 ----- diff --git a/cachalot/__init__.py b/cachalot/__init__.py index cc92ff5..e94df5a 100644 --- a/cachalot/__init__.py +++ b/cachalot/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 3, 1) +VERSION = (2, 3, 2) __version__ = '.'.join(map(str, VERSION)) default_app_config = 'cachalot.apps.CachalotConfig'