Skip to content

Commit 6c075c6

Browse files
author
cloudinary-bot
committed
Version 1.42.0
1 parent 6469b57 commit 6c075c6

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
1.42.0 / 2025-01-07
2+
==================
3+
4+
New functionality and features
5+
------------------------------
6+
7+
* Add support for `restore_by_asset_ids` Admin API
8+
* Add support for `delete_resources_by_asset_ids` Admin API
9+
* Add support for `delete_backed_up_assets` Admin API
10+
* Add support for `allow_dynamic_list_values` parameter in `MetadataField`
11+
12+
Other Changes
13+
-------------
14+
* Fix `AuthToken` configuration consumption
15+
* Switch to `pytest`
16+
* Add Generative AI Transformation sample project
17+
* Add missing doc strings
18+
119
1.41.0 / 2024-08-01
220
==================
321

cloudinary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
URI_SCHEME = "cloudinary"
3939
API_VERSION = "v1_1"
4040

41-
VERSION = "1.41.0"
41+
VERSION = "1.42.0"
4242

4343
_USER_PLATFORM_DETAILS = "; ".join((platform(), "Python {}".format(python_version())))
4444

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "cloudinary"
33
description = "Python and Django SDK for Cloudinary"
4-
version = "1.41.0"
4+
version = "1.42.0"
55

66
authors = [{ name = "Cloudinary", email = "[email protected]" }]
77
license = { file = "LICENSE.txt" }

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
else:
88
# Following code is legacy (Python 2.7 compatibility) and will be removed in the future!
99
# TODO: Remove in next major update (when dropping Python 2.7 compatibility)
10-
version = "1.41.0"
10+
version = "1.42.0"
1111

1212
with open('README.md') as file:
1313
long_description = file.read()

0 commit comments

Comments
 (0)