Skip to content

Commit

Permalink
bump package version no.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Burke committed May 4, 2012
1 parent b0bced7 commit f831b5a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
7 changes: 4 additions & 3 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.3.1';
$api_version = '3.3.2';
$api_state = 'stable';

$release_version = '3.3.1';
$release_version = '3.3.2';
$release_state = 'stable';
$release_notes = "No release notes.";
$release_notes = 'Short fix to convert boolean true and false to the strings "true" and "false" in the TwiML generator.';

$description = <<<DESC
A SDK (or helper library, as we're calling them) for PHP developers to write
Expand All @@ -62,6 +62,7 @@
),
'ignore' => array(
'package.php',
'version_guidelines.md',
'*.tgz',
'scratch/*',
'docs/*',
Expand Down
18 changes: 9 additions & 9 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ applications against Twilio&apos;s REST API and generate TwiML responses.</descr
<email>kevin@twilio.com</email>
<active>yes</active>
</lead>
<date>2012-05-01</date>
<time>22:01:05</time>
<date>2012-05-03</date>
<time>17:18:30</time>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://creativecommons.org/licenses/MIT/">MIT License</license>
<notes>
No release notes.
Short fix to convert boolean true and false to the strings &quot;true&quot; and &quot;false&quot; in the TwiML generator.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -135,17 +135,17 @@ No release notes.
<changelog>
<release>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-05-01</date>
<date>2012-05-03</date>
<license uri="http://creativecommons.org/licenses/MIT/">MIT License</license>
<notes>
No release notes.
Short fix to convert boolean true and false to the strings &quot;true&quot; and &quot;false&quot; in the TwiML generator.
</notes>
</release>
</changelog>
Expand Down
6 changes: 6 additions & 0 deletions version_guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@ update.

* Update the version number in docs/index.rst

* Update the version number in package.php, add a short change note, and then
run:

php package.php > package.xml

You may need to install some dependencies to get this to run properly.

0 comments on commit f831b5a

Please sign in to comment.