Skip to content

Reports api #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed the versions listed in the user agent and throughout the code
  • Loading branch information
Nathan Sutton committed Jul 29, 2014
commit e2604c441163c36fd27097d8d9a22fcdf16d1ee4
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author: [Nathan Sutton] (nsutton (a) brightcove (.) com)

Company: [Brightcove/Zencoder](http://www.zencoder.com)

Version: 2.2.2
Version: 2.2.3

Date: 2014-07-29

Expand Down Expand Up @@ -241,6 +241,7 @@ Your [notifications page](https://app.zencoder.com/notifications) will come in h
VERSIONS
---------

Version 2.2.3 - 2014-07-29 Fixed the versions listed in the user agent and throughout the code
Version 2.2.2 - 2014-07-29 Fixed a bug where api_key was set as api_version in the http connection options
Version 2.2.1 - 2014-07-29 Support setting CURLOPT_CAPATH and CURLOPT_CAINFO on cURL connections.
Version 2.2.0 - 2014-07-24 Removing the bundled CA chain to address expiring intermediate certificate
Expand Down
6 changes: 3 additions & 3 deletions Services/Zencoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @category Services
* @package Services_Zencoder
* @author Michael Christopher <[email protected]>
* @version Release: 2.2.1
* @version Release: 2.2.3
* @license http://creativecommons.org/licenses/MIT/MIT
* @link http://github.com/zencoder/zencoder-php
* @access private
Expand All @@ -26,14 +26,14 @@ function Services_Zencoder_autoload($className)
* @category Services
* @package Services_Zencoder
* @author Michael Christopher <[email protected]>
* @version Release: 2.2.1
* @version Release: 2.2.3
* @license http://creativecommons.org/licenses/MIT/MIT
* @link http://github.com/zencoder/zencoder-php
*/

class Services_Zencoder extends Services_Zencoder_Base
{
const USER_AGENT = 'ZencoderPHP v2.2.1';
const USER_AGENT = 'ZencoderPHP v2.2.3';

/**
* Contains the HTTP communication class
Expand Down