Skip to content

Commit

Permalink
Version 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Tocker committed Dec 2, 2017
1 parent 3c1a907 commit 892ddcb
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@

1.9.0 / 2017-12-03
==================

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

* Add `api.delete_derived_by_transformation`
* Support SSL certificate (#101)
* Add async param to uploader (#115)
* Add TravisCI configuration

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

* Add `update_version.sh`
* Add CONTRIBUTING.md (#113)
* Remove `auto_tagging` failure test
* Skip search tests by default
* Fix parallel tests
* Replace `%` with `format()`
* Make test more readable
* Mock up tests
* Fix parallel tests
* Remove faces param
* Clean up resources after tests
* Update PKG-INFO
* Update .gitignore
* Update setup.py

1.8.0 / 2017-05-03
==================

Expand Down
2 changes: 1 addition & 1 deletion cloudinary/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SHARED_CDN = AKAMAI_SHARED_CDN
CL_BLANK = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"

VERSION = "1.8.0"
VERSION = "1.9.0"
USER_AGENT = "CloudinaryPython/" + VERSION
""" :const: USER_AGENT """

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '1.8.0'
version = '1.9.0'

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

0 comments on commit 892ddcb

Please sign in to comment.