File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
- ## [ Unreleased ]
3
+ ## v4.2.0 (2023-01-11)
4
4
5
- - Added new beta billing functionality for referral customer users, accessible via ` myClient.Beta.Referral ` 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.
5
+ - Added new beta billing functionality for referral customer users, accessible via ` myClient.Beta.Referral ` 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
+ - Added new ` DeliveryMaxDatetime ` Shipment option
9
10
10
11
## v4.1.0 (2022-12-07)
11
12
Original file line number Diff line number Diff line change 3
3
<metadata >
4
4
<id >EasyPost-Official</id >
5
5
<title >EasyPost (Official)</title >
6
- <version >4.1 .0</version >
6
+ <version >4.2 .0</version >
7
7
<authors >EasyPost</authors >
8
8
<owners >EasyPost</owners >
9
9
<projectUrl >https://www.easypost.com</projectUrl >
Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ public class Options : EasyPostObject
69
69
public string ? DeliveryConfirmation { get ; set ; }
70
70
[ JsonProperty ( "delivery_time_preference" ) ]
71
71
public string ? DeliveryTimePreference { get ; set ; }
72
+ [ JsonProperty ( "delivery_max_datetime" ) ]
73
+ public string ? DeliveryMaxDatetime { get ; set ; }
72
74
[ JsonProperty ( "dropoff_max_datetime" ) ]
73
75
public DateTime ? DropoffMaxDatetime { get ; set ; }
74
76
[ JsonProperty ( "dropoff_type" ) ]
Original file line number Diff line number Diff line change 2
2
3
3
// Version information for an assembly must follow semantic versioning
4
4
// When releasing a release candidate, append a 4th digit being the number of the release candidate
5
- [ assembly: AssemblyVersion ( "4.1 .0" ) ]
6
- [ assembly: AssemblyFileVersion ( "4.1 .0" ) ]
7
- [ assembly: AssemblyInformationalVersion ( "4.1 .0" ) ]
5
+ [ assembly: AssemblyVersion ( "4.2 .0" ) ]
6
+ [ assembly: AssemblyFileVersion ( "4.2 .0" ) ]
7
+ [ assembly: AssemblyInformationalVersion ( "4.2 .0" ) ]
You can’t perform that action at this time.
0 commit comments