diff --git a/CHANGES.txt b/CHANGES.txt index 103f70d..eb49be1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,10 @@ Changes ========= +1.3.2 + +- Adds bulk support for both users and events. +- Adds support for viewing bulk job info. + 1.3.1 - Fixes paging diff --git a/README.md b/README.md index cc98708..a366e4d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ In your composer.json file: ```js { "require": { - "intercom/intercom-php": "1.3.1" + "intercom/intercom-php": "1.3.2" } } ``` @@ -555,4 +555,3 @@ $result = $intercom->bulkUsers( ] ]); ``` - diff --git a/src/Intercom/IntercomAbstractClient.php b/src/Intercom/IntercomAbstractClient.php index d553e0c..880ec86 100644 --- a/src/Intercom/IntercomAbstractClient.php +++ b/src/Intercom/IntercomAbstractClient.php @@ -17,7 +17,7 @@ abstract class IntercomAbstractClient extends Client /** @var string */ const DEFAULT_ACCEPT_HEADER = 'application/json'; - const USER_AGENT = 'intercom-php/1.3.1'; + const USER_AGENT = 'intercom-php/1.3.2'; /** diff --git a/src/Intercom/IntercomBasicAuthClient.php b/src/Intercom/IntercomBasicAuthClient.php index d023da8..b5517a2 100644 --- a/src/Intercom/IntercomBasicAuthClient.php +++ b/src/Intercom/IntercomBasicAuthClient.php @@ -30,7 +30,7 @@ public static function factory($config = []) $client->setBasicAuth($config->get('app_id'), $config->get('api_key')); - $client->setUserAgent('intercom-php/1.3.1', true); + $client->setUserAgent('intercom-php/1.3.2', true); return $client; } diff --git a/src/Intercom/IntercomClientTokenAuthClient.php b/src/Intercom/IntercomClientTokenAuthClient.php index af5eff2..6511e21 100644 --- a/src/Intercom/IntercomClientTokenAuthClient.php +++ b/src/Intercom/IntercomClientTokenAuthClient.php @@ -31,7 +31,7 @@ public static function factory($config = []) $client->setBasicAuth($config->get('client_uuid'), $config->get('client_key')); - $client->setUserAgent('intercom-php/1.3.1', true); + $client->setUserAgent('intercom-php/1.3.2', true); $client->setDefaultOption('query/app_id', $config->get('app_id'));