diff --git a/CHANGELOG.md b/CHANGELOG.md index 07d38fa..9055580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## [1.0.7] - 2018-08-27 +## Changed +- Updated our requirement for tuspy. ([#131](https://github.com/vimeo/vimeo.py/issues/131)) + ## [1.0.6] - 2018-08-16 ## Added - Added support for dynamic Tus chunk sizes. ([#130](https://github.com/vimeo/vimeo.py/pull/130)) @@ -100,6 +104,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.7]: https://github.com/vimeo/vimeo.py/compare/1.0.6...1.0.7 [1.0.6]: https://github.com/vimeo/vimeo.py/compare/1.0.5...1.0.6 [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 diff --git a/setup.py b/setup.py index 1f42fac..d80a37a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from distutils.core import setup setup(name='PyVimeo', - version='1.0.6', + version='1.0.7', 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 a3410ba..1467dc1 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.6; (http://developer.vimeo.com/api/docs)" + USER_AGENT = "pyvimeo 1.0.7; (http://developer.vimeo.com/api/docs)" def __init__(self, token=None, key=None, secret=None, *args, **kwargs): """Prep the handle with the authentication information."""