Skip to content

Commit

Permalink
1.0.5 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Ursenbach committed Jul 16, 2018
1 parent e00a127 commit 8383fa7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [1.0.5] - 2018-07-16
## Changed
- Changed the Tus retry work added in [1.0.4] to use the native `retries` parameter within the Tus uploader. ([#127](https://github.com/vimeo/vimeo.py/pull/127))

## [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))
Expand Down Expand Up @@ -92,6 +96,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.5]: https://github.com/vimeo/vimeo.py/compare/1.0.4...1.0.5
[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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from distutils.core import setup

setup(name='PyVimeo',
version='1.0.4',
version='1.0.5',
description='Simple interaction with the Vimeo API.',
url='https://developer.vimeo.com/',
author='Vimeo',
Expand Down
2 changes: 1 addition & 1 deletion vimeo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.4; (http://developer.vimeo.com/api/docs)"
USER_AGENT = "pyvimeo 1.0.5; (http://developer.vimeo.com/api/docs)"

def __init__(self, token=None, key=None, secret=None, *args, **kwargs):
"""Prep the handle with the authentication information."""
Expand Down

0 comments on commit 8383fa7

Please sign in to comment.