diff --git a/CHANGELOG.md b/CHANGELOG.md index e7e5dd4..525974f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## CHANGELOG +### v1.4.1 (2019-02-18) + +**Bug Fixes** + * Fixed HTTP Client, now proper uppercased HTTP method names are generated + * Avoid casting/unwrapping responses when $options['raw'] is used + * SourcesService - fixed incorrect param list + +**Features and Improvements** + * Support for adding deal without value + * Adds $option parameter (default array[]) to all the transitive callers of \BaseCRM\HttpClient::request() in Service classes + ### v1.4.0 (2018-10-08) **Bug Fixes** diff --git a/lib/Configuration.php b/lib/Configuration.php index 6b37b99..d578586 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -3,8 +3,8 @@ class Configuration { - // @version 1.4.0 Current stable version. - const VERSION = "1.4.0"; + // @version 1.4.1 Current stable version. + const VERSION = "1.4.1"; const PRODUCTION_URL = "https://api.getbase.com"; const URL_REGEXP = "/\b(?:(?:https?|http):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i";