diff options
author | Kevin Burke <kevin@twilio.com> | 2012-12-20 11:18:29 -0800 |
---|---|---|
committer | Kevin Burke <kevin@twilio.com> | 2012-12-20 11:18:29 -0800 |
commit | 26e87d0b0903bc7c53fcb29776758ed18b4b6a8a (patch) | |
tree | 06e034002ac733b1c0cdc80075ad2bdb387b0b65 | |
parent | 1e51ebd5683f47341daecc4dcd8ccb2ee9fa18e5 (diff) | |
download | twilio-php-26e87d0b0903bc7c53fcb29776758ed18b4b6a8a.zip twilio-php-26e87d0b0903bc7c53fcb29776758ed18b4b6a8a.tar.gz twilio-php-26e87d0b0903bc7c53fcb29776758ed18b4b6a8a.tar.bz2 |
Bump version to 3.9.03.9.0
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | CHANGES.md | 11 | ||||
-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 |
6 files changed, 19 insertions, 7 deletions
@@ -16,3 +16,4 @@ Shawn Parker (Gipetto) Bulat Shakirzyanov (avalanche123) Asher Snyder (noloh) Neuman Vong (luciferous) + @@ -1,6 +1,17 @@ twilio-php Changelog ==================== +Version 3.9.0 +------------- + +Released on December 20, 2012 + +- [Fixes TwiML generation to handle non-ASCII characters properly][utf-8]. Note + that as of version 3.9.0, **the library requires PHP version 5.2.3, at least + for TwiML generation**. (Reporter: [Walker Hamilton](/walker)) + +[utf-8]: https://github.com/twilio/twilio-php/pull/111 + Version 3.8.3 ------------- diff --git a/Services/Twilio.php b/Services/Twilio.php index 4b71deb..5aa957f 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.8.3'; + const USER_AGENT = 'twilio-php/3.9.0'; protected $http; protected $retryAttempts; diff --git a/docs/conf.py b/docs/conf.py index cdc7be8..3b5f313 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,9 +49,9 @@ copyright = unicode(datetime.utcnow().year) + u', Twilio Inc' # built documents. # # The short X.Y version. -version = '3.8' +version = '3.9' # The full version, including alpha/beta/rc tags. -release = '3.8.3' +release = '3.9.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 0804dee..e1f405c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,7 +10,7 @@ Status ======= -This documentation is for version 3.8.3 of `twilio-php <https://www.github.com/twilio/twilio-php>`_. +This documentation is for version 3.9.0 of `twilio-php <https://www.github.com/twilio/twilio-php>`_. Quickstart ============ diff --git a/package.php b/package.php index ebf883b..d7064b9 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.8.3'; +$api_version = '3.9.0'; $api_state = 'stable'; -$release_version = '3.8.3'; +$release_version = '3.9.0'; $release_state = 'stable'; -$release_notes = 'Fix the ShortCode resource'; +$release_notes = 'Fix TwiML generation for non-ASCII characters'; $description = <<<DESC A SDK (or helper library, as we're calling them) for PHP developers to write |