From d1609d9584617018e4cf110f85efe581305956c9 Mon Sep 17 00:00:00 2001 From: Nate Harris Date: Thu, 28 Mar 2024 14:41:08 -0600 Subject: [PATCH] [chore] Prep for v5.9.0 release (#335) --- CHANGELOG.md | 2 +- composer.json | 2 +- lib/EasyPost/EasyPost.php | 2 +- lib/EasyPost/User.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17218bec..aaf9c0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## Next Release +## v5.9.0 (2024-03-28) - [ADDED] Beta `paginated_api_keys` functionality to the `User` class - Retrieves a paginated list of API keys for the authenticated user, versus `api_keys`, which returns an unpaginated list diff --git a/composer.json b/composer.json index b90dab70..f950e185 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "easypost/easypost-php", "description": "EasyPost Shipping API Client Library for PHP", - "version": "5.8.0", + "version": "5.9.0", "keywords": [ "shipping", "api", diff --git a/lib/EasyPost/EasyPost.php b/lib/EasyPost/EasyPost.php index 2652aa09..8e06b815 100644 --- a/lib/EasyPost/EasyPost.php +++ b/lib/EasyPost/EasyPost.php @@ -55,7 +55,7 @@ abstract class EasyPost * * @var string */ - const VERSION = '5.8.0'; + const VERSION = '5.9.0'; /** * Get the API key. diff --git a/lib/EasyPost/User.php b/lib/EasyPost/User.php index ae77f480..0e4a8597 100644 --- a/lib/EasyPost/User.php +++ b/lib/EasyPost/User.php @@ -134,7 +134,7 @@ public function api_keys() /** * Retrieve a paginated list of all API keys for the specified user. * - * NOTE: This endpoint is in beta and subject to change. + * NOTE: This endpoint is in beta, only available to approved users, and subject to change. * * @return mixed A paginated list of API keys for the specified user. */