Skip to content

Commit

Permalink
Bump version to 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Burke committed Aug 6, 2012
1 parent 41e2e97 commit c6e61f1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
@@ -1,6 +1,16 @@
twilio-php Changelog
====================

Version 3.7.0
-------------

Released on August 6, 2012

- Add retry support for idempotent HTTP requests that result in a 500 server
error (default is 1 attempt, however this can be configured).
- Throw a Services_Twilio_RestException instead of a DomainException if the
response content cannot be parsed as JSON (usually indicates a 500 error)

Version 3.6.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion Services/Twilio.php
Expand Up @@ -22,7 +22,7 @@ function Services_Twilio_autoload($className) {
*/
class Services_Twilio extends Services_Twilio_Resource
{
const USER_AGENT = 'twilio-php/3.6.0';
const USER_AGENT = 'twilio-php/3.7.0';

protected $http;
protected $retryAttempts;
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -49,9 +49,9 @@
# built documents.
#
# The short X.Y version.
version = '3.6'
version = '3.7'
# The full version, including alpha/beta/rc tags.
release = '3.6.0'
release = '3.7.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -10,7 +10,7 @@
Status
=======

This documentation is for version 3.6.0 of `twilio-php <https://www.github.com/twilio/twilio-php>`_.
This documentation is for version 3.7.0 of `twilio-php <https://www.github.com/twilio/twilio-php>`_.

Quickstart
============
Expand Down
6 changes: 3 additions & 3 deletions package.php
Expand Up @@ -35,12 +35,12 @@
require_once 'PEAR/PackageFileManager2.php';
PEAR::setErrorHandling(PEAR_ERROR_DIE);

$api_version = '3.6.0';
$api_version = '3.7.0';
$api_state = 'stable';

$release_version = '3.6.0';
$release_version = '3.7.0';
$release_state = 'stable';
$release_notes = 'Add support for Queues and Members';
$release_notes = 'Add retry support and better JSON body parsing';

$description = <<<DESC
A SDK (or helper library, as we're calling them) for PHP developers to write
Expand Down

0 comments on commit c6e61f1

Please sign in to comment.