From 14277703b83e7600062d95c06e7ad2052e432a1e Mon Sep 17 00:00:00 2001 From: Constantine Nathanson Date: Mon, 14 Aug 2023 13:09:51 +0300 Subject: [PATCH] Version 1.34.0 --- CHANGELOG.md | 10 ++++++++++ cloudinary/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ef02a42..fc8cd6d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +1.34.0 / 2023-08-14 +=================== + +New functionality and features +------------------------------ + + * Add support for `on_success` upload parameter + * Add support for `visual_search` Admin API + 1.33.0 / 2023-05-15 ================== diff --git a/cloudinary/__init__.py b/cloudinary/__init__.py index ee688bf7..2cc24dc4 100644 --- a/cloudinary/__init__.py +++ b/cloudinary/__init__.py @@ -38,7 +38,7 @@ URI_SCHEME = "cloudinary" API_VERSION = "v1_1" -VERSION = "1.33.0" +VERSION = "1.34.0" _USER_PLATFORM_DETAILS = "; ".join((platform(), "Python {}".format(python_version()))) diff --git a/setup.py b/setup.py index b5a2da8b..f040e26f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import find_packages, setup -version = "1.33.0" +version = "1.34.0" with open('README.md') as file: long_description = file.read()