Skip to content

Commit e5fc7c9

Browse files
committed
chore: prepare v4.2.0 for release
1 parent 4851ac4 commit e5fc7c9

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

CHANGELOG.md

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

3-
## [Unreleased]
3+
## v4.2.0 (2023-01-11)
44

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
910

1011
## v4.1.0 (2022-12-07)
1112

EasyPost.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>EasyPost-Official</id>
55
<title>EasyPost (Official)</title>
6-
<version>4.1.0</version>
6+
<version>4.2.0</version>
77
<authors>EasyPost</authors>
88
<owners>EasyPost</owners>
99
<projectUrl>https://www.easypost.com</projectUrl>

EasyPost/Models/API/Options.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ public class Options : EasyPostObject
6969
public string? DeliveryConfirmation { get; set; }
7070
[JsonProperty("delivery_time_preference")]
7171
public string? DeliveryTimePreference { get; set; }
72+
[JsonProperty("delivery_max_datetime")]
73+
public string? DeliveryMaxDatetime { get; set; }
7274
[JsonProperty("dropoff_max_datetime")]
7375
public DateTime? DropoffMaxDatetime { get; set; }
7476
[JsonProperty("dropoff_type")]

EasyPost/Properties/VersionInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
// Version information for an assembly must follow semantic versioning
44
// 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")]

0 commit comments

Comments
 (0)