From fb4f1c9d72a7ab1dd69b1c8d6820ecd0035bb044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20Bicz=C3=B3?= Date: Thu, 10 May 2018 08:04:18 +0200 Subject: [PATCH 1/2] Added CHANGELOG.md. --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..176b7816 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# CHANGELOG + +## 2.0.0-alpha1 - 2018-05-09 + +* First alpha release. From 4ac147c09bab3b7436816bbaa1d22b23c1b1f744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20Bicz=C3=B3?= Date: Thu, 10 May 2018 08:07:22 +0200 Subject: [PATCH 2/2] Bumped version and updated UA string. --- src/Client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client.php b/src/Client.php index 3e654327..adc8d669 100644 --- a/src/Client.php +++ b/src/Client.php @@ -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'; @@ -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); } /**