Skip to content

Commit f94d303

Browse files
committed
Update changelog and bump version for release
1 parent 81d0119 commit f94d303

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changes
22
=========
33

4+
1.0.0-b8
5+
6+
- Added support for the new_session parameter when creating or updating users, thanks @FallDi
7+
48
1.0.0-b7
59

610
- Removed requirement for admin_id on note creation

README.md

Lines changed: 1 addition & 1 deletion
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-b7"
20+
"intercom/intercom-php": "1.0.0-b8"
2121
}
2222
}
2323
```

src/Intercom/IntercomAbstractClient.php

Lines changed: 1 addition & 1 deletion
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-b4';
20+
const USER_AGENT = 'intercom-php/1.0.0-b8';
2121

2222

2323
/**

src/Intercom/IntercomBasicAuthClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public static function factory($config = [])
2929
$client->configure($config);
3030

3131
$client->setBasicAuth($config->get('app_id'), $config->get('api_key'));
32-
33-
$client->setUserAgent('intercom-php/1.0.0-b4', true);
32+
33+
$client->setUserAgent('intercom-php/1.0.0-b8', true);
3434

3535
return $client;
3636
}

src/Intercom/IntercomClientTokenAuthClient.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public static function factory($config = [])
3030
$client->configure($config);
3131

3232
$client->setBasicAuth($config->get('client_uuid'), $config->get('client_key'));
33-
34-
$client->setUserAgent('intercom-php/1.0.0-b4', true);
33+
34+
$client->setUserAgent('intercom-php/1.0.0-b8', true);
3535

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

0 commit comments

Comments
 (0)