Skip to content

Commit

Permalink
update version to 1.0.0-b11
Browse files Browse the repository at this point in the history
  • Loading branch information
josler committed Jan 14, 2015
1 parent 8f2c014 commit da5adbb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
=========

1.0.0-b11

- Add support for `signed_up_at`

1.0.0-b10

- Add support for Admin replies to conversations
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ In your composer.json file:
```js
{
"require": {
"intercom/intercom-php": "1.0.0-b10"
"intercom/intercom-php": "1.0.0-b11"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/Intercom/IntercomAbstractClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class IntercomAbstractClient extends Client
/** @var string */
const DEFAULT_ACCEPT_HEADER = 'application/json';

const USER_AGENT = 'intercom-php/1.0.0-b10';
const USER_AGENT = 'intercom-php/1.0.0-b11';


/**
Expand Down
3 changes: 1 addition & 2 deletions src/Intercom/IntercomBasicAuthClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ public static function factory($config = [])

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

$client->setUserAgent('intercom-php/1.0.0-b10', true);
$client->setUserAgent('intercom-php/1.0.0-b11', true);

return $client;
}
}

2 changes: 1 addition & 1 deletion src/Intercom/IntercomClientTokenAuthClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static function factory($config = [])

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

$client->setUserAgent('intercom-php/1.0.0-b10', true);
$client->setUserAgent('intercom-php/1.0.0-b11', true);

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

Expand Down

0 comments on commit da5adbb

Please sign in to comment.