Skip to content

Commit 8fffc8f

Browse files
committed
update version to 1.0.0-b12
1 parent 62d4230 commit 8fffc8f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGES.txt

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

4+
1.0.0-b12
5+
6+
- Remove Id requirement on userUpdate, thanks @rb-cohen
7+
48
1.0.0-b11
59

610
- Add support for `signed_up_at`
@@ -12,7 +16,7 @@ Changes
1216
1.0.0-b9
1317

1418
- Add support for the update_last_request_at parameter on creating users
15-
- Add support for the new_session paramter on updating users
19+
- Add support for the new_session parameter on updating users
1620

1721
1.0.0-b8
1822

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

2222

2323
/**

src/Intercom/IntercomBasicAuthClient.php

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

3535
return $client;
3636
}

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-b11', true);
34+
$client->setUserAgent('intercom-php/1.0.0-b12', true);
3535

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

0 commit comments

Comments
 (0)