Skip to content

Commit

Permalink
Bump version to 3.8.1 and add change note
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Burke committed Nov 24, 2012
1 parent 4d89950 commit 286fb6a
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 22 deletions.
21 changes: 21 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
twilio-php Changelog
====================

Version 3.8.1
-------------

Released on November 23, 2012

- [Implements the Countable interface on the ListResource][countable], so you
can call count() on any resource.
- [Adds a convenience method for retrieving a phone number object][get-number],
so you can retrieve all of a number's properties by its E.164 representation.

Internally:

- Adds [unit tests for url encoding of Unicode characters][unicode-tests].
- Updates [Travis CI configuration to use Composer][travis-composer],
shortening build time from 83 seconds to 21 seconds.

[countable]: https://twilio-php.readthedocs.org/en/latest/usage/rest.html#retrieving-the-total-number-of-resources
[get-number]: https://twilio-php.readthedocs.org/en/latest/usage/rest/phonenumbers.html#retrieving-all-of-a-number-s-properties
[unicode-tests]: https://github.com/twilio/twilio-php/commit/6f8aa57885796691858e460c8cea748e241c47e3
[travis-composer]: https://github.com/twilio/twilio-php/commit/a732358e90e1ae9a5a3348ad77dda8cc8b5ec6bc

Version 3.8.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion Services/Twilio.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function Services_Twilio_autoload($className) {
*/
class Services_Twilio extends Services_Twilio_Resource
{
const USER_AGENT = 'twilio-php/3.8.0';
const USER_AGENT = 'twilio-php/3.8.1';

protected $http;
protected $retryAttempts;
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '3.8'
# The full version, including alpha/beta/rc tags.
release = '3.8.2'
release = '3.8.1'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Status
=======

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

Quickstart
============
Expand Down
22 changes: 3 additions & 19 deletions package.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
require_once 'PEAR/PackageFileManager2.php';
PEAR::setErrorHandling(PEAR_ERROR_DIE);

$api_version = '3.8.0';
$api_version = '3.8.1';
$api_state = 'stable';

$release_version = '3.8.0';
$release_version = '3.8.1';
$release_state = 'stable';
$release_notes = 'Support Usage Records and Usage Triggers';
$release_notes = 'Add count() and getNumber() convenience functions';

$description = <<<DESC
A SDK (or helper library, as we're calling them) for PHP developers to write
Expand All @@ -67,8 +67,6 @@
'vendor/*',
'composer.*',
'coverage/*',
'docs/*',
'travis_install.bash',
'.travis.yml',
)
)
Expand All @@ -90,20 +88,6 @@
$package->setAPIVersion($api_version);
$package->setAPIStability($api_state);

$package->addMaintainer(
'lead',
'luciferous',
'Neuman Vong',
'neuman+pear@twilio.com'
);

$package->addMaintainer(
'lead',
'derferman',
'Kyle Conroy',
'kyle+pear@twilio.com'
);

$package->addMaintainer(
'lead',
'kevinburke',
Expand Down

0 comments on commit 286fb6a

Please sign in to comment.