diff options
author | matt <matt@twilio.com> | 2016-08-29 14:55:48 -0700 |
---|---|---|
committer | matt <matt@twilio.com> | 2016-08-29 14:55:48 -0700 |
commit | 8cceebe3a13395017e9ac845b9e6f1d2c4181ca3 (patch) | |
tree | 695eb73e5d0e79a628acb2a89948e5b6c7ef1008 | |
parent | 7f4ffe206682eea2c20af4c11b0320a9ad2ba466 (diff) | |
download | twilio-php-8cceebe3a13395017e9ac845b9e6f1d2c4181ca3.zip twilio-php-8cceebe3a13395017e9ac845b9e6f1d2c4181ca3.tar.gz twilio-php-8cceebe3a13395017e9ac845b9e6f1d2c4181ca3.tar.bz2 |
Bumping to version 5.2.05.2.0
-rw-r--r-- | Twilio/VersionInfo.php | 6 | ||||
-rw-r--r-- | deploy.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Twilio/VersionInfo.php b/Twilio/VersionInfo.php index ebfd077..5799671 100644 --- a/Twilio/VersionInfo.php +++ b/Twilio/VersionInfo.php @@ -5,9 +5,9 @@ namespace Twilio; class VersionInfo { - const MAJOR = ''; - const MINOR = ''; - const PATCH = ''; + const MAJOR = 5; + const MINOR = 2; + const PATCH = 0; public static function string() { return implode('.', array(self::MAJOR, self::MINOR, self::PATCH)); @@ -10,7 +10,7 @@ $args = $_SERVER['argv']; array_shift($args); if ($args) { - $version = $args; + $version = $args[0]; } else { $patchParts = explode('-', VersionInfo::PATCH); $lastPatch = array_pop($patchParts); |