Skip to content

Commit bd3192a

Browse files
author
cloudinary-bot
committed
Version 1.26.0
1 parent 239a3ec commit bd3192a

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
1.26.0 / 2021-06-20
2+
==================
3+
4+
New functionality and features
5+
------------------------------
6+
7+
* Add support for OAuth authorization
8+
* Add support for large file upload in `CloudinaryField`
9+
* Add support for `context` and `metadata` parameters in `rename` API
10+
* Add support for overriding Django settings with env variables
11+
* Add support for `filename_override` upload parameter
12+
* Add support for `metadata` parameter in `resources` APIs
13+
14+
Other Changes
15+
-------------
16+
17+
* Add validation to `generate_auth_token` to enforce url or acl
18+
* Fix `normalize_expression` in advanced cases
19+
20+
121
1.25.0 / 2021-03-26
222
==================
323

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.25.0"
41+
VERSION = "1.26.0"
4242

4343
USER_AGENT = "CloudinaryPython/{} (Python {})".format(VERSION, python_version())
4444
""" :const: USER_AGENT """

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.25.0"
5+
version = "1.26.0"
66

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

0 commit comments

Comments
 (0)