diff options
author | Kevin Burke <kevin@twilio.com> | 2013-09-18 09:10:14 -0700 |
---|---|---|
committer | Kevin Burke <kevin@twilio.com> | 2013-09-18 09:10:14 -0700 |
commit | d60ae45fc1b1f5072f793cd1cc51c886e007af08 (patch) | |
tree | 2587c21d5162fd6415d15896263c662842633a51 | |
parent | 829bb906d670dfffed1c1e1c9d3483b749eb6359 (diff) | |
download | twilio-php-d60ae45fc1b1f5072f793cd1cc51c886e007af08.zip twilio-php-d60ae45fc1b1f5072f793cd1cc51c886e007af08.tar.gz twilio-php-d60ae45fc1b1f5072f793cd1cc51c886e007af08.tar.bz2 |
3.12.03.12.0
-rw-r--r-- | Services/Twilio.php | 2 | ||||
-rw-r--r-- | docs/conf.py | 4 | ||||
-rw-r--r-- | docs/index.rst | 2 | ||||
-rw-r--r-- | package.php | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/Services/Twilio.php b/Services/Twilio.php index eaa6e7e..c3fabd0 100644 --- a/Services/Twilio.php +++ b/Services/Twilio.php @@ -33,7 +33,7 @@ spl_autoload_register('Services_Twilio_autoload'); */ class Services_Twilio extends Services_Twilio_Resource { - const USER_AGENT = 'twilio-php/3.11.0'; + const USER_AGENT = 'twilio-php/3.12.0'; protected $http; protected $retryAttempts; diff --git a/docs/conf.py b/docs/conf.py index a2b8a79..aff11c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ copyright = unicode(datetime.utcnow().year) + u', Twilio Inc' # built documents. # # The short X.Y version. -version = '3.10' +version = '3.12' # The full version, including alpha/beta/rc tags. -release = '3.10.0' +release = '3.12.0' # 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 19c83d0..fb0c4db 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,7 +10,7 @@ Status ======= -This documentation is for version 3.10.0 of `twilio-php +This documentation is for version 3.12.0 of `twilio-php <https://www.github.com/twilio/twilio-php>`_. Quickstart diff --git a/package.php b/package.php index 25f91ad..29ecc91 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.10.0'; +$api_version = '3.12.0'; $api_state = 'stable'; -$release_version = '3.10.0'; +$release_version = '3.12.0'; $release_state = 'stable'; -$release_notes = 'Use HTTP status code for error reporting'; +$release_notes = 'Add support for MMS and Sip In'; $description = <<<DESC A SDK (or helper library, as we're calling them) for PHP developers to write |