Skip to content

Commit bb95866

Browse files
authored
Merge pull request #253 from EasyPost/v6.1.0
chore: prepare v6.1.0 for release
2 parents 87c76b2 + 7bb520d commit bb95866

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## v6.1.0 (2023-01-11)
4+
5+
- Adds new beta billing functionality for referral customer users, accessible via the `$client->betaReferralCustomer` service
6+
- `addPaymentMethod` to add an existing Stripe bank account or credit card to your EasyPost account
7+
- `refundByAmount` refunds you wallet balance by a specified amount
8+
- `refundByPaymentLog` refunds you wallet balance by a specified payment log
9+
310
## v6.0.0 (2023-01-05)
411

512
- Release final version of v6 that contains all the changes in the `v6.0.0-rc1` below
@@ -34,9 +41,9 @@
3441

3542
## v5.8.0 (2022-12-01)
3643

37-
- [ADDED] Carrier account creation routes requests correctly for carriers that require custom workflows
38-
- [FIXED] Instead of returning `null` when a list of child API keys cannot be returned (eg: when you call `api_keys` on a non-user object) it will return an empty list. The expected impact to end users is extremely low
39-
- [IMPROVED] Retrieving child user API keys for users with large numbers of child users should see much faster results as we now break on the match instead of iterating the entire list
44+
- Adds carrier account creation routes requests correctly for carriers that require custom workflows
45+
- Instead of returning `null` when a list of child API keys cannot be returned (eg: when you call `api_keys` on a non-user object) it will return an empty list. The expected impact to end users is extremely low
46+
- Retrieving child user API keys for users with large numbers of child users should see much faster results as we now break on the match instead of iterating the entire list
4047

4148
## v5.7.0 (2022-09-21)
4249

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "easypost/easypost-php",
33
"description": "EasyPost Shipping API Client Library for PHP",
4-
"version": "6.0.0",
4+
"version": "6.1.0",
55
"keywords": [
66
"shipping",
77
"api",

lib/EasyPost/Constant/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ abstract class Constants
1111
const BETA_API_VERSION = 'beta';
1212

1313
// Library constants
14-
const LIBRARY_VERSION = '6.0.0';
14+
const LIBRARY_VERSION = '6.1.0';
1515
const SUPPORT_EMAIL = 'support@easypost.com';
1616

1717
// Validation

0 commit comments

Comments
 (0)