diff --git a/CHANGELOG.md b/CHANGELOG.md index b0fe7ee4..81f4905c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## Next Release +## v6.7.0 (2024-07-24) - Add new `Claim` service for filing claims on EasyPost shipments and insurances diff --git a/EasyPost.nuspec b/EasyPost.nuspec index 219fc637..97e8bff1 100644 --- a/EasyPost.nuspec +++ b/EasyPost.nuspec @@ -3,7 +3,7 @@ EasyPost-Official EasyPost (Official) - 6.6.0 + 6.7.0 EasyPost EasyPost https://www.easypost.com diff --git a/EasyPost/Models/API/Claim.cs b/EasyPost/Models/API/Claim.cs index bd44d89c..9fe12b60 100644 --- a/EasyPost/Models/API/Claim.cs +++ b/EasyPost/Models/API/Claim.cs @@ -9,7 +9,7 @@ namespace EasyPost.Models.API { #pragma warning disable CA1724 // Naming conflicts with Parameters.Claim /// - /// Class representing a EasyPost claim object. + /// Class representing a EasyPost claim object. /// public class Claim : EasyPostObject, Parameters.IClaimParameter { diff --git a/EasyPost/Properties/VersionInfo.cs b/EasyPost/Properties/VersionInfo.cs index 5009de6c..d1794c2f 100644 --- a/EasyPost/Properties/VersionInfo.cs +++ b/EasyPost/Properties/VersionInfo.cs @@ -2,6 +2,6 @@ // Version information for an assembly must follow semantic versioning // When releasing a release candidate, append a 4th digit being the number of the release candidate -[assembly: AssemblyVersion("6.6.0")] -[assembly: AssemblyFileVersion("6.6.0")] -[assembly: AssemblyInformationalVersion("6.6.0")] +[assembly: AssemblyVersion("6.7.0")] +[assembly: AssemblyFileVersion("6.7.0")] +[assembly: AssemblyInformationalVersion("6.7.0")] diff --git a/EasyPost/Services/ClaimService.cs b/EasyPost/Services/ClaimService.cs index 22617911..eef90972 100644 --- a/EasyPost/Services/ClaimService.cs +++ b/EasyPost/Services/ClaimService.cs @@ -9,7 +9,7 @@ namespace EasyPost.Services { /// - /// Class representing a set of claim-related functionality. + /// Class representing a set of claim-related functionality. /// // ReSharper disable once ClassNeverInstantiated.Global public class ClaimService : EasyPostService @@ -27,7 +27,6 @@ internal ClaimService(EasyPostClient client) /// /// Create an . - /// Related API documentation. /// /// Data to use to create the . /// to use for the HTTP request. @@ -37,7 +36,6 @@ internal ClaimService(EasyPostClient client) /// /// List all s. - /// Related API documentation. /// /// Parameters to filter the list of s. /// to use for the HTTP request. @@ -52,7 +50,6 @@ public async Task All(Parameters.Claim.All parameters, Cancella /// /// Get the next page of a paginated . - /// Related API documentation. /// /// The to get the next page of. /// The size of the next page. @@ -64,7 +61,6 @@ public async Task All(Parameters.Claim.All parameters, Cancella /// /// Retrieve an . - /// Related API documentation. /// /// The ID of the to retrieve. /// to use for the HTTP request. @@ -74,7 +70,6 @@ public async Task All(Parameters.Claim.All parameters, Cancella /// /// Refund an . - /// Related API documentation. /// /// The ID of the to refund. /// to use for the HTTP request.