Skip to content

Commit

Permalink
Version 1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudinary-bot committed Sep 20, 2022
1 parent d1eef31 commit d91510e
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
1.30.0 / 2022-09-20
==================

New functionality and features
------------------------------

* Add support for `resources_by_asset_folder` Admin API
* Add support for `unique_display_name` parameter
* Add support for `use_asset_folder_as_public_id_prefix` parameter
* Add support for `metadata` in `update` Admin API
* Add support for multiple ACLs in `AuthToken`

Other Changes
-------------

* Move Django static files to `static/cloudinary`
* Allow passing callable parameters to `CloudinaryField`
* Fix incorrect Provisioning API parameter for `base_account`
* Add OS info to `User-Agent`
* Add source URL for PyPi
* Improve tests of API response headers
* Extend search resources by asset_id tests

1.29.0 / 2022-02-03
==================

Expand Down
2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
URI_SCHEME = "cloudinary"
API_VERSION = "v1_1"

VERSION = "1.29.0"
VERSION = "1.30.0"

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import find_packages, setup

version = "1.29.0"
version = "1.30.0"

with open('README.md') as file:
long_description = file.read()
Expand Down

0 comments on commit d91510e

Please sign in to comment.