diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e76e9da..b725ce8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +2.5.3 +----- +- Add support for custom curl options + 2.5.2 ----- - Add support for setHostname diff --git a/build/bugsnag.phar b/build/bugsnag.phar index a52cb63d..6eb0fb2b 100644 Binary files a/build/bugsnag.phar and b/build/bugsnag.phar differ diff --git a/example/php/index.php b/example/php/index.php index 665896cc..9437dc47 100644 --- a/example/php/index.php +++ b/example/php/index.php @@ -3,6 +3,6 @@ require_once "../../build/bugsnag.phar"; $bugsnag = new Bugsnag_Client("066f5ad3590596f9aa8d601ea89af845"); -$bugsnag->notifyError("Broken", "Something broke", array("tab" => array("paying" => true, "object" => (object)array("key" => "value"), "null" => NULL, "string" => "Test", "int" => 4))); +$bugsnag->notifyError("Broken", "Something broke", array("tab" => array("paying" => true, "object" => (object)array("key" => "value"), "null" => NULL, "string" => "test", "int" => 4))); ?> diff --git a/src/Bugsnag/Configuration.php b/src/Bugsnag/Configuration.php index 14927bb3..d3467bf7 100644 --- a/src/Bugsnag/Configuration.php +++ b/src/Bugsnag/Configuration.php @@ -18,7 +18,7 @@ class Bugsnag_Configuration public $proxySettings = array(); public $notifier = array( 'name' => 'Bugsnag PHP (Official)', - 'version' => '2.5.1', + 'version' => '2.5.3', 'url' => 'https://bugsnag.com', ); public $sendEnvironment = false;