Skip to content

Commit d91510e

Browse files
author
cloudinary-bot
committed
Version 1.30.0
1 parent d1eef31 commit d91510e

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
1.30.0 / 2022-09-20
2+
==================
3+
4+
New functionality and features
5+
------------------------------
6+
7+
* Add support for `resources_by_asset_folder` Admin API
8+
* Add support for `unique_display_name` parameter
9+
* Add support for `use_asset_folder_as_public_id_prefix` parameter
10+
* Add support for `metadata` in `update` Admin API
11+
* Add support for multiple ACLs in `AuthToken`
12+
13+
Other Changes
14+
-------------
15+
16+
* Move Django static files to `static/cloudinary`
17+
* Allow passing callable parameters to `CloudinaryField`
18+
* Fix incorrect Provisioning API parameter for `base_account`
19+
* Add OS info to `User-Agent`
20+
* Add source URL for PyPi
21+
* Improve tests of API response headers
22+
* Extend search resources by asset_id tests
23+
124
1.29.0 / 2022-02-03
225
==================
326

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.29.0"
41+
VERSION = "1.30.0"
4242

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
version = "1.29.0"
5+
version = "1.30.0"
66

77
with open('README.md') as file:
88
long_description = file.read()

0 commit comments

Comments
 (0)