Skip to content

Commit

Permalink
Prepping v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Ursenbach committed Apr 2, 2018
1 parent e03413d commit 2d68d42
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,5 +1,9 @@
# Changelog

## [2.0.3] - 2018-04-02
### Changed
- Uploads no longer make a pre-emptive request to check the user's quota. This check is done automatically when making a POST to `/me/videos`. ([#163](https://github.com/vimeo/vimeo.php/pull/163))

## [2.0.2] - 2018-03-20
### Added
- Support for passing API requests through a custom proxy. ([#161](https://github.com/vimeo/vimeo.php/pull/161), [@MichalMMac](https://github.com/MichalMMac))
Expand Down Expand Up @@ -75,6 +79,7 @@
### Added
- This is the Vimeo library for version 3 of the Vimeo API.

[2.0.3]: https://github.com/vimeo/vimeo.php/compare/2.0.2...2.0.3
[2.0.2]: https://github.com/vimeo/vimeo.php/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/vimeo/vimeo.php/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/vimeo/vimeo.php/compare/1.3.0...2.0.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ composer require vimeo/vimeo-api

### Manual

1. Download the latest release: [v2.0.1](https://github.com/vimeo/vimeo.php/archive/2.0.1.zip).
1. Download the latest release: [v2.0.3](https://github.com/vimeo/vimeo.php/archive/2.0.3.zip).
2. Include the autoloader `require("/path/to/vimeo.php/autoload.php");`.
3. Use the library `$lib = new \Vimeo\Vimeo($client_id, $client_secret)`.

Expand Down
2 changes: 1 addition & 1 deletion src/Vimeo/Vimeo.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Vimeo
const CLIENT_CREDENTIALS_TOKEN_ENDPOINT = '/oauth/authorize/client';
const VERSIONS_ENDPOINT = '/versions';
const VERSION_STRING = 'application/vnd.vimeo.*+json; version=3.4';
const USER_AGENT = 'vimeo.php 2.0.1; (http://developer.vimeo.com/api/docs)';
const USER_AGENT = 'vimeo.php 2.0.3; (http://developer.vimeo.com/api/docs)';
const CERTIFICATE_PATH = '/certificates/vimeo-api.pem';

protected $_curl_opts = array();
Expand Down

0 comments on commit 2d68d42

Please sign in to comment.