Skip to content

Commit

Permalink
Merge pull request #1 from mxr576/2.x
Browse files Browse the repository at this point in the history
Added change log and aligned UA string
  • Loading branch information
cnovak authored May 10, 2018
2 parents f8f6edf + 4ac147c commit 77417f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## 2.0.0-alpha1 - 2018-05-09

* First alpha release.
4 changes: 2 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Client implements ClientInterface

public const CONFIG_ERROR_FORMATTER = 'error_formatter';

protected const CLIENT_VERSION = '2.0.x-dev';
protected const VERSION = '2.0.0-alpha1';

private const DEFAULT_ENDPOINT = 'https://api.enterprise.apigee.com/v1';

Expand Down Expand Up @@ -174,7 +174,7 @@ public function getUserAgent(): string
*/
public function getClientVersion(): string
{
return sprintf('Apigee Edge PHP SDK %s', self::CLIENT_VERSION);
return sprintf('Apigee Edge PHP Client %s', self::VERSION);
}

/**
Expand Down

0 comments on commit 77417f3

Please sign in to comment.