Skip to content

Commit da5adbb

Browse files
committed
update version to 1.0.0-b11
1 parent 8f2c014 commit da5adbb

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
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-b11
5+
6+
- Add support for `signed_up_at`
7+
48
1.0.0-b10
59

610
- Add support for Admin replies to conversations

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-b10"
20+
"intercom/intercom-php": "1.0.0-b11"
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-b10';
20+
const USER_AGENT = 'intercom-php/1.0.0-b11';
2121

2222

2323
/**

src/Intercom/IntercomBasicAuthClient.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ 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-b10', true);
33+
$client->setUserAgent('intercom-php/1.0.0-b11', true);
3434

3535
return $client;
3636
}
3737
}
38-

src/Intercom/IntercomClientTokenAuthClient.php

Lines changed: 1 addition & 1 deletion
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-b10', true);
34+
$client->setUserAgent('intercom-php/1.0.0-b11', true);
3535

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

0 commit comments

Comments
 (0)