Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 3.0.1 and change log #309

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# CHANGELOG
## [3.0.1](https://github.com/apigee/apigee-client-php/milestone/22?closed=1)
* [#286] Support for PHP 8.2 and updated league/period library.
* [#290] Upgraded friendsofphp/php-cs-fixer to ^3.22.
* [#297] Extended AppGroup class from base class AppOwner.
* [#298] Apigee X Teams with pagination.
See [AppGroup-pagination] (https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.appgroups/list#query-parameters) for more information.
* [#307] Apigee X Teams Apps with pagination.
See [AppGroup-Apps-pagination] (https://cloud.google.com/apigee/docs/reference/apis/apigee/rest/v1/organizations.appgroups.apps/list#query-parameters) for more information.

## [3.0.0](https://github.com/apigee/apigee-client-php/milestone/21?closed=1)
* [#262] Support Symfony/Serializer minimum version 6.2 (Added support for Drupal 10)
* [#272] Update dependencies for Symfony/Serializer 6.2 and dropped support for Symfony/Serializer 4.4
Expand Down
2 changes: 1 addition & 1 deletion src/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ interface ClientInterface extends HttpClient
*/
public const APIGEE_ON_GCP_ENDPOINT = 'https://apigee.googleapis.com/v1';

public const VERSION = '3.0.0';
public const VERSION = '3.0.1';

/**
* Allows access to the last request, response and exception.
Expand Down
Loading