Skip to content

Commit a0a1bd9

Browse files
committed
Merge pull request #83 from intercom/BL/1.0.0
Version 1.0.0
2 parents c7f392f + 0c6701e commit a0a1bd9

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Changes
22
=========
3+
1.0.0
4+
5+
- Releasing version 1.0.0
36

47
1.0.0-b12
58

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-b12"
20+
"intercom/intercom-php": "1.0.0"
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-b12';
20+
const USER_AGENT = 'intercom-php/1.0.0';
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-b12', true);
33+
$client->setUserAgent('intercom-php/1.0.0', 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-b12', true);
34+
$client->setUserAgent('intercom-php/1.0.0', true);
3535

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

0 commit comments

Comments
 (0)