Skip to content

Commit 5d176ca

Browse files
committed
chore: prep v7.6.0 for release
1 parent 9f13d06 commit 5d176ca

7 files changed

Lines changed: 49 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## v7.6.0 (2026-02-20)
4+
5+
- Adds the following functions:
6+
- `FedexRegistration.RegisterAddress`
7+
- `FedexRegistration.RequestPin`
8+
- `FedexRegistration.ValidatePin`
9+
- `FedexRegistration.SubmitInvoice`
10+
311
## v7.5.0 (2026-02-03)
412

513
- Adds the following functions usable by child and referral customer users:

EasyPost.Tests/ServicesTests/FedExRegistrationServiceTest.cs renamed to EasyPost.Tests/ServicesTests/WithParameters/FedExRegistrationServiceTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using EasyPost.Tests._Utilities;
77
using Xunit;
88

9-
namespace EasyPost.Tests.ServicesTests
9+
namespace EasyPost.Tests.ServicesTests.WithParameters
1010
{
1111
public class FedExRegistrationServiceTests : UnitTest
1212
{

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>7.5.0</version>
6+
<version>7.6.0</version>
77
<authors>EasyPost</authors>
88
<owners>EasyPost</owners>
99
<projectUrl>https://www.easypost.com</projectUrl>

EasyPost/Parameters/FedExRegistration/RegisterAddress.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@ public class RegisterAddress : BaseParameters<Models.API.FedExAccountValidationR
7373
[TopLevelRequestParameter(Necessity.Optional, "address_validation", "email")]
7474
public string? Email { get; set; }
7575

76+
/// <summary>
77+
/// Action for the FedEx registration (create/update).
78+
/// </summary>
79+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "action")]
80+
public string? Action { get; set; }
81+
82+
/// <summary>
83+
/// Type of carrier account for the FedEx registration.
84+
/// </summary>
85+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "type")]
86+
public string? Type { get; set; }
87+
7688
/// <summary>
7789
/// Carrier account ID for the FedEx registration.
7890
/// </summary>

EasyPost/Parameters/FedExRegistration/SubmitInvoice.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ public class SubmitInvoice : BaseParameters<Models.API.FedExAccountValidationRes
4343
[TopLevelRequestParameter(Necessity.Optional, "invoice_validation", "invoice_currency")]
4444
public string? InvoiceCurrency { get; set; }
4545

46+
/// <summary>
47+
/// Action for the FedEx registration (create/update).
48+
/// </summary>
49+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "action")]
50+
public string? Action { get; set; }
51+
52+
/// <summary>
53+
/// Type of carrier account for the FedEx registration.
54+
/// </summary>
55+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "type")]
56+
public string? Type { get; set; }
57+
4658
/// <summary>
4759
/// Carrier account ID for the FedEx registration.
4860
/// </summary>

EasyPost/Parameters/FedExRegistration/ValidatePin.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,18 @@ public class ValidatePin : BaseParameters<Models.API.FedExAccountValidationRespo
2525
[TopLevelRequestParameter(Necessity.Optional, "pin_validation", "pin")]
2626
public string? Pin { get; set; }
2727

28+
/// <summary>
29+
/// Action for the FedEx registration (create/update).
30+
/// </summary>
31+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "action")]
32+
public string? Action { get; set; }
33+
34+
/// <summary>
35+
/// Type of carrier account for the FedEx registration.
36+
/// </summary>
37+
[TopLevelRequestParameter(Necessity.Optional, "easypost_details", "type")]
38+
public string? Type { get; set; }
39+
2840
/// <summary>
2941
/// Carrier account ID for the FedEx registration.
3042
/// </summary>

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("7.5.0")]
6-
[assembly: AssemblyFileVersion("7.5.0")]
7-
[assembly: AssemblyInformationalVersion("7.5.0")]
5+
[assembly: AssemblyVersion("7.6.0")]
6+
[assembly: AssemblyFileVersion("7.6.0")]
7+
[assembly: AssemblyInformationalVersion("7.6.0")]

0 commit comments

Comments
 (0)