Skip to content

Commit

Permalink
update changelog and version
Browse files Browse the repository at this point in the history
  • Loading branch information
josler committed Jan 13, 2015
1 parent ebc2934 commit e08e1df
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 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-b10

- Add support for Admin replies to conversations

1.0.0-b9

- Add support for the update_last_request_at parameter on creating users
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-b9"
"intercom/intercom-php": "1.0.0-b10"
}
}
```
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-b9';
const USER_AGENT = 'intercom-php/1.0.0-b10';


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

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

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

return $client;
}
Expand Down
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-b9', true);
$client->setUserAgent('intercom-php/1.0.0-b10', true);

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

Expand Down

0 comments on commit e08e1df

Please sign in to comment.