From faa21e31a44f3f187037f475781a348d84cb1988 Mon Sep 17 00:00:00 2001 From: cloudinary-bot Date: Tue, 27 Feb 2024 19:08:34 +0000 Subject: [PATCH] Version 1.39.0 --- CHANGELOG.md | 9 +++++++++ cloudinary/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55605d84..1e076939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.39.0 / 2024-02-27 +================== + +New functionality and features +------------------------------ + + * Add support for `restrictions` metadata field parameter + * Add support for `regions` upload parameter + 1.38.0 / 2024-01-08 ================== diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index 4a4a212e..fd3dc9d4 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -38,7 +38,7 @@ URI_SCHEME = "cloudinary" API_VERSION = "v1_1" -VERSION = "1.38.0" +VERSION = "1.39.0" _USER_PLATFORM_DETAILS = "; ".join((platform(), "Python {}".format(python_version()))) diff --git a/pyproject.toml b/pyproject.toml index 5005cca1..d95b7dba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "cloudinary" description = "Python and Django SDK for Cloudinary" -version = "1.38.0" +version = "1.39.0" authors = [{ name = "Cloudinary", email = "info@cloudinary.com" }] license = { file = "LICENSE.txt" } diff --git a/setup.py b/setup.py index 5cb5af84..36827586 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ else: # Following code is legacy (Python 2.7 compatibiltiy) and will be removed in the future! # TODO: Remove in next major update (when dropping Python 2.7 compatibility) - version = "1.38.0" + version = "1.39.0" with open('README.md') as file: long_description = file.read()