From 6371a62d7c34565916f7272d24e53ca6da69f1dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20Bicz=C3=B3?= Date: Tue, 27 Nov 2018 14:34:12 +0100 Subject: [PATCH 1/2] Bumped client version. --- src/ClientInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ClientInterface.php b/src/ClientInterface.php index dba91383..651367d6 100644 --- a/src/ClientInterface.php +++ b/src/ClientInterface.php @@ -32,7 +32,7 @@ interface ClientInterface extends HttpClient { public const DEFAULT_ENDPOINT = 'https://api.enterprise.apigee.com/v1'; - public const VERSION = '2.0.0-alpha5'; + public const VERSION = '2.0.0'; /** * Allows access to the last request, response and exception. From 369e9ff3abf16ccd77e6d3c078eaaa1ec869f4a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dezs=C5=91=20Bicz=C3=B3?= Date: Tue, 27 Nov 2018 14:43:37 +0100 Subject: [PATCH 2/2] Added changes since 2.0.0-alpha6. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd80cda5..fd260165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 2.0.0 - 2018-11-27 +* **First stable release!** :tada: :tada: :tada: +* Added Monetization API support with [alpha stability](https://github.com/apigee/apigee-client-php/blob/3856d585878628eb6c44541cf5529055c8a480b6/README.md#monetization-api-alpha-release). (Management API support is stable.) +* Added missing organization controller parameter to the Company controller's constructor. +* Improved documentation of the CompanyMembersControllerInterface's `setMembers()` methods. + ## 2.0.0-alpha6 - 2018-11-09 * idProperty() on entity objects is a static method from now. * Setters on entities now accepts variable lengths arguments instead of an array. This way we can leverage PHP's built-in type check on these methods as well.