Skip to content

Commit b061353

Browse files
committed
update changelog and bump version for release
1 parent 425d042 commit b061353

5 files changed

+11
-6
lines changed

CHANGES.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
Changes
22
=========
33

4+
1.0.0-b9
5+
6+
- Add support for the update_last_request_at parameter on creating users
7+
- Add support for the new_session paramter on updating users
8+
49
1.0.0-b8
510

6-
- Added support for the new_session parameter when creating or updating users, thanks @FallDi
11+
- Added support for the new_session parameter when creating users, thanks @FallDi
712

813
1.0.0-b7
914

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In your composer.json file:
1717
```js
1818
{
1919
"require": {
20-
"intercom/intercom-php": "1.0.0-b8"
20+
"intercom/intercom-php": "1.0.0-b9"
2121
}
2222
}
2323
```

src/Intercom/IntercomAbstractClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ abstract class IntercomAbstractClient extends Client
1717
/** @var string */
1818
const DEFAULT_ACCEPT_HEADER = 'application/json';
1919

20-
const USER_AGENT = 'intercom-php/1.0.0-b8';
20+
const USER_AGENT = 'intercom-php/1.0.0-b9';
2121

2222

2323
/**
@@ -116,4 +116,4 @@ public function ping($user_details)
116116
$this->saveUser($user_details);
117117
return $this->getUnreadUserConversations($user_details);
118118
}
119-
}
119+
}

src/Intercom/IntercomBasicAuthClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static function factory($config = [])
3030

3131
$client->setBasicAuth($config->get('app_id'), $config->get('api_key'));
3232

33-
$client->setUserAgent('intercom-php/1.0.0-b8', true);
33+
$client->setUserAgent('intercom-php/1.0.0-b9', true);
3434

3535
return $client;
3636
}

src/Intercom/IntercomClientTokenAuthClient.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static function factory($config = [])
3131

3232
$client->setBasicAuth($config->get('client_uuid'), $config->get('client_key'));
3333

34-
$client->setUserAgent('intercom-php/1.0.0-b8', true);
34+
$client->setUserAgent('intercom-php/1.0.0-b9', true);
3535

3636
$client->setDefaultOption('query/app_id', $config->get('app_id'));
3737

0 commit comments

Comments
 (0)