Skip to content

Commit

Permalink
Merge pull request #142 from EasyPost/v2.11.0
Browse files Browse the repository at this point in the history
chore: prepare v2.11.0 for release
  • Loading branch information
Justintime50 authored Jan 11, 2023
2 parents f8e5958 + 894d725 commit 649a1ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# CHANGELOG

## Next Release
## v2.11.0 (2023-01-11)

- [ADDED] Adds new beta billing functionality for ReferralCustomer users
- Adds new beta billing functionality for ReferralCustomer users
- `BetaAddPaymentMethod` can add a pre-existing Stripe bank account or credit card to your EasyPost account
- `BetaRefundByAmount` refunds your wallet by a dollar amount
- `BetaRefundByPaymentLog` refunds you wallet by a PaymentLog ID
- Adds new `PickupMinDatetime` and `DeliveryMaxDatetime` Shipment options

## v2.10.0 (2022-12-07)

Expand Down
2 changes: 2 additions & 0 deletions shipment_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ type ShipmentOptions struct {
CODAddressID string `json:"cod_address_id,omitempty"`
Currency string `json:"currency,omitempty"`
DeliveryConfirmation string `json:"delivery_confirmation,omitempty"`
DeliveryMaxDatetime *time.Time `json:"delivery_max_datetime,omitempty"`
DutyPayment *Payment `json:"duty_payment,omitempty"`
DutyPaymentAccount string `json:"duty_payment_account,omitempty"`
DropoffType string `json:"dropoff_type,omitempty"`
Expand All @@ -41,6 +42,7 @@ type ShipmentOptions struct {
LabelSize string `json:"label_size,omitempty"`
Machinable bool `json:"machinable,omitempty"`
Payment *Payment `json:"payment,omitempty"`
PickupMinDatetime *time.Time `json:"pickup_min_datetime,omitempty"`
PrintCustom1 string `json:"print_custom_1,omitempty"`
PrintCustom2 string `json:"print_custom_2,omitempty"`
PrintCustom3 string `json:"print_custom_3,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package easypost

const Version = "2.10.0"
const Version = "2.11.0"

0 comments on commit 649a1ab

Please sign in to comment.