Skip to content

Commit

Permalink
1.0.10 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Ursenbach committed Dec 5, 2018
1 parent 7de0bfa commit 4de25f4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
# Changelog
## [1.0.10] - 2018-12-05
### Changed
- Updated the "Development Status" classifier in the package to stable.

## [1.0.9] - 2018-09-07
## Changed
### Changed
- Downgraded our tuspu requirement. ([#136](https://github.com/vimeo/vimeo.py/pull/136))

## [1.0.8] - 2018-08-28
## Fixed
### Fixed
- Added some more handling for non-Vimeo exceptions. ([#134](https://github.com/vimeo/vimeo.py/issues/134))

## [1.0.7] - 2018-08-27
## Changed
### Changed
- Updated our requirement for tuspy. ([#131](https://github.com/vimeo/vimeo.py/issues/131))

## [1.0.6] - 2018-08-16
## Added
### Added
- Added support for dynamic Tus chunk sizes. ([#130](https://github.com/vimeo/vimeo.py/pull/130))

## [1.0.5] - 2018-07-16
## Changed
### 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
### 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
Expand Down Expand Up @@ -112,6 +116,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.10]: https://github.com/vimeo/vimeo.py/compare/1.0.9...1.0.10
[1.0.9]: https://github.com/vimeo/vimeo.py/compare/1.0.8...1.0.9
[1.0.8]: https://github.com/vimeo/vimeo.py/compare/1.0.7...1.0.8
[1.0.7]: https://github.com/vimeo/vimeo.py/compare/1.0.6...1.0.7
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
long_description = fh.read()

setup(name='PyVimeo',
version='1.0.9',
version='1.0.10',
description='Simple interaction with the Vimeo API.',
long_description=long_description,
long_description_content_type="text/markdown",
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.9; (http://developer.vimeo.com/api/docs)"
USER_AGENT = "pyvimeo 1.0.10; (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 4de25f4

Please sign in to comment.