Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 4.20.1 (2026-06-01)

### Fixed
- Corrected Usage Summary API documentation URLs to use `/usage_summary/` instead of `/usage_summaries/`.

### v4.20.0 (2026-05-04)
* * *
### New Resources:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.20.0
4.20.1
2 changes: 1 addition & 1 deletion src/Actions/Contracts/UsageSummaryActionsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{

/**
* @see https://apidocs.chargebee.com/docs/api/usage_summaries/retrieve-usage-summary-for-a-subscription?lang=php-v4
* @see https://apidocs.chargebee.com/docs/api/usage_summary/retrieve-usage-summary-for-a-subscription?lang=php-v4
* @param array{
* limit?: int,
* offset?: string,
Expand Down
2 changes: 1 addition & 1 deletion src/Actions/UsageSummaryActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct(HttpClientFactory $httpClientFactory, Environment $e
}

/**
* @see https://apidocs.chargebee.com/docs/api/usage_summaries/retrieve-usage-summary-for-a-subscription?lang=php-v4
* @see https://apidocs.chargebee.com/docs/api/usage_summary/retrieve-usage-summary-for-a-subscription?lang=php-v4
* @param array{
* limit?: int,
* offset?: string,
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

final class Version
{
const VERSION = '4.20.0';
const VERSION = '4.20.1';
}

?>
Loading