diff --git a/CHANGELOG.md b/CHANGELOG.md index ce02cd6f..4fca2325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## [5.0.4](https://github.com/auth0/auth0-PHP/tree/5.0.4) (2017-06-26) +[Full Changelog](https://github.com/auth0/auth0-PHP/compare/5.0.0...5.0.4) + +**Added** +- Added setter for debugger [\#149](https://github.com/auth0/auth0-PHP/pull/149) ([AxaliaN](https://github.com/AxaliaN)) + +**Changed** +- Restructured tests and fixed hhvm build [\#164](https://github.com/auth0/auth0-PHP/pull/164) ([Nyholm](https://github.com/Nyholm)) +- Update .env.example with more appropriate values [\#148](https://github.com/auth0/auth0-PHP/pull/148) ([AmaanC](https://github.com/AmaanC)) + +**Removed** +- Remove non-essential dev package [\#157](https://github.com/auth0/auth0-PHP/pull/157) ([Nyholm](https://github.com/Nyholm)) + ## [3.4.0](https://github.com/auth0/auth0-PHP/tree/3.4.0) (2016-06-21) [Full Changelog](https://github.com/auth0/auth0-PHP/compare/3.3.7...3.4.0) @@ -314,4 +327,4 @@ ## [0.6.3](https://github.com/auth0/auth0-PHP/tree/0.6.3) (2014-01-06) -\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* \ No newline at end of file +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* diff --git a/src/API/Helpers/ApiClient.php b/src/API/Helpers/ApiClient.php index 6042f96b..f352b256 100644 --- a/src/API/Helpers/ApiClient.php +++ b/src/API/Helpers/ApiClient.php @@ -12,7 +12,7 @@ class ApiClient { - const API_VERSION = "5.0.0"; + const API_VERSION = "5.0.4"; protected static $infoHeadersDataEnabled = true; protected static $infoHeadersData; @@ -66,4 +66,4 @@ public function __call($name, $arguments) { return $builder->withHeaders($this->headers); } -} \ No newline at end of file +}