diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a7f8fc9..a740499f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +1.28.1 / 2022-01-13 +================== + + * Add support for Django 4 + * Add tests to verify expression normalization + 1.28.0 / 2021-11-11 ================== diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index 8278200c..56e7b5b7 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -38,7 +38,7 @@ URI_SCHEME = "cloudinary" API_VERSION = "v1_1" -VERSION = "1.28.0" +VERSION = "1.28.1" USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version()) """ :const: USER_AGENT """ diff --git a/setup.py b/setup.py index e149ea1e..3c935296 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "1.28.0" +version = "1.28.1" with open('README.rst') as file: long_description = file.read()