diff options
author | Kevin Burke <kevin@twilio.com> | 2012-12-30 00:18:59 -0800 |
---|---|---|
committer | Kevin Burke <kevin@twilio.com> | 2012-12-30 00:18:59 -0800 |
commit | 35d765f6fe181273046426a62d98cade4f693ce3 (patch) | |
tree | 8359571647b1afb666937c32d41628839e35791b | |
parent | 180b81b500c2af5bd220ef8305ade2d64ffae2f9 (diff) | |
download | twilio-php-35d765f6fe181273046426a62d98cade4f693ce3.zip twilio-php-35d765f6fe181273046426a62d98cade4f693ce3.tar.gz twilio-php-35d765f6fe181273046426a62d98cade4f693ce3.tar.bz2 |
Bump library to 3.9.13.9.1
-rw-r--r-- | CHANGES.md | 11 | ||||
-rw-r--r-- | Services/Twilio.php | 2 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | docs/index.rst | 2 | ||||
-rw-r--r-- | package.php | 6 |
5 files changed, 17 insertions, 6 deletions
@@ -1,6 +1,17 @@ twilio-php Changelog ==================== +Version 3.9.1 +------------- + +Released on December 30, 2012 + +- Adds a `$last_response` parameter to the `$client` object that can be +used to [retrieve the raw API response][last-response]. (Reporter: [David +Jones](/dxjones) + +[last-response]: https://github.com/twilio/twilio-php/pull/112/files + Version 3.9.0 ------------- diff --git a/Services/Twilio.php b/Services/Twilio.php index eb42a66..b28c888 100644 --- a/Services/Twilio.php +++ b/Services/Twilio.php @@ -22,7 +22,7 @@ spl_autoload_register('Services_Twilio_autoload'); */ class Services_Twilio extends Services_Twilio_Resource { - const USER_AGENT = 'twilio-php/3.9.0'; + const USER_AGENT = 'twilio-php/3.9.1'; protected $http; protected $retryAttempts; diff --git a/docs/conf.py b/docs/conf.py index 3b5f313..beb0c56 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ copyright = unicode(datetime.utcnow().year) + u', Twilio Inc' # The short X.Y version. version = '3.9' # The full version, including alpha/beta/rc tags. -release = '3.9.0' +release = '3.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index e1f405c..3c8016f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,7 +10,7 @@ Status ======= -This documentation is for version 3.9.0 of `twilio-php <https://www.github.com/twilio/twilio-php>`_. +This documentation is for version 3.9.1 of `twilio-php <https://www.github.com/twilio/twilio-php>`_. Quickstart ============ diff --git a/package.php b/package.php index d7064b9..a0a2ad6 100644 --- a/package.php +++ b/package.php @@ -35,12 +35,12 @@ error_reporting(E_ALL & ~E_DEPRECATED); require_once 'PEAR/PackageFileManager2.php'; PEAR::setErrorHandling(PEAR_ERROR_DIE); -$api_version = '3.9.0'; +$api_version = '3.9.1'; $api_state = 'stable'; -$release_version = '3.9.0'; +$release_version = '3.9.1'; $release_state = 'stable'; -$release_notes = 'Fix TwiML generation for non-ASCII characters'; +$release_notes = 'Add $last_response attribute to the $client'; $description = <<<DESC A SDK (or helper library, as we're calling them) for PHP developers to write |