From b58b7fe28b4f3c186ec85ca859713e47b71eb97d Mon Sep 17 00:00:00 2001 From: Jon Ursenbach Date: Mon, 16 Jul 2018 11:06:57 -0400 Subject: [PATCH] 1.0.4 changelog --- CHANGELOG.md | 5 +++++ setup.py | 2 +- vimeo/client.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5abc76..e49516c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## [1.0.4] - 2018-07-16 +## Added +- Tus uploads will now retry up to a number of 3 times if failures occur. ([#126](https://github.com/vimeo/vimeo.py/pull/126)) + ## [1.0.3] - 2018-06-27 ### Fixed - Fixing a bug where non-SDK exceptions would throw fatal exceptions. ([#122](https://github.com/vimeo/vimeo.py/issues/122)) @@ -88,6 +92,7 @@ additional issues are invited for full support. ### Added - First release using the Python [requests](http://docs.python-requests.org/en/latest/) module +[1.0.4]: https://github.com/vimeo/vimeo.py/compare/1.0.3...1.0.4 [1.0.3]: https://github.com/vimeo/vimeo.py/compare/1.0.2...1.0.3 [1.0.2]: https://github.com/vimeo/vimeo.py/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/vimeo/vimeo.py/compare/1.0.0...1.0.1 diff --git a/setup.py b/setup.py index 397f04f..048ae9c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.core import setup setup(name='PyVimeo', - version='1.0.3', + version='1.0.4', description='Simple interaction with the Vimeo API.', url='https://developer.vimeo.com/', author='Vimeo', diff --git a/vimeo/client.py b/vimeo/client.py index 489d330..0965189 100644 --- a/vimeo/client.py +++ b/vimeo/client.py @@ -19,7 +19,7 @@ class VimeoClient(ClientCredentialsMixin, AuthorizationCodeMixin, UploadMixin): HTTP_METHODS = set(('head', 'get', 'post', 'put', 'patch', 'options', 'delete')) ACCEPT_HEADER = "application/vnd.vimeo.*;version=3.4" - USER_AGENT = "pyvimeo 1.0.3; (http://developer.vimeo.com/api/docs)" + USER_AGENT = "pyvimeo 1.0.4; (http://developer.vimeo.com/api/docs)" def __init__(self, token=None, key=None, secret=None, *args, **kwargs): """Prep the handle with the authentication information."""