Skip to content

Commit

Permalink
- Bump version number (#577)
Browse files Browse the repository at this point in the history
- Remove bad docstring links
  • Loading branch information
nwithan8 authored Jul 24, 2024
1 parent 9540e8a commit 80236f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion EasyPost.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>EasyPost-Official</id>
<title>EasyPost (Official)</title>
<version>6.6.0</version>
<version>6.7.0</version>
<authors>EasyPost</authors>
<owners>EasyPost</owners>
<projectUrl>https://www.easypost.com</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion EasyPost/Models/API/Claim.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace EasyPost.Models.API
{
#pragma warning disable CA1724 // Naming conflicts with Parameters.Claim
/// <summary>
/// Class representing a <a href="https://www.easypost.com/docs/api#claim-object">EasyPost claim object</a>.
/// Class representing a EasyPost claim object.
/// </summary>
public class Claim : EasyPostObject, Parameters.IClaimParameter
{
Expand Down
6 changes: 3 additions & 3 deletions EasyPost/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
7 changes: 1 addition & 6 deletions EasyPost/Services/ClaimService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace EasyPost.Services
{
/// <summary>
/// Class representing a set of <a href="https://www.easypost.com/docs/api#claims">claim-related functionality</a>.
/// Class representing a set of claim-related functionality.
/// </summary>
// ReSharper disable once ClassNeverInstantiated.Global
public class ClaimService : EasyPostService
Expand All @@ -27,7 +27,6 @@ internal ClaimService(EasyPostClient client)

/// <summary>
/// Create an <see cref="Claim"/>.
/// <a href="https://www.easypost.com/docs/api#create-an-insurance">Related API documentation</a>.
/// </summary>
/// <param name="parameters">Data to use to create the <see cref="Claim"/>.</param>
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
Expand All @@ -37,7 +36,6 @@ internal ClaimService(EasyPostClient client)

/// <summary>
/// List all <see cref="Claim"/>s.
/// <a href="https://www.easypost.com/docs/api#retrieve-a-list-of-insurances">Related API documentation</a>.
/// </summary>
/// <param name="parameters">Parameters to filter the list of <see cref="Claim"/>s.</param>
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
Expand All @@ -52,7 +50,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella

/// <summary>
/// Get the next page of a paginated <see cref="ClaimCollection"/>.
/// <a href="https://www.easypost.com/docs/api#retrieve-a-list-of-insurances">Related API documentation</a>.
/// </summary>
/// <param name="collection">The <see cref="ClaimCollection"/> to get the next page of.</param>
/// <param name="pageSize">The size of the next page.</param>
Expand All @@ -64,7 +61,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella

/// <summary>
/// Retrieve an <see cref="Claim"/>.
/// <a href="https://www.easypost.com/docs/api#retrieve-an-insurance">Related API documentation</a>.
/// </summary>
/// <param name="id">The ID of the <see cref="Claim"/> to retrieve.</param>
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
Expand All @@ -74,7 +70,6 @@ public async Task<ClaimCollection> All(Parameters.Claim.All parameters, Cancella

/// <summary>
/// Refund an <see cref="Claim"/>.
/// <a href="https://www.easypost.com/docs/api#refund-an-insurance">Related API documentation</a>.
/// </summary>
/// <param name="id">The ID of the <see cref="Claim"/> to refund.</param>
/// <param name="cancellationToken"><see cref="CancellationToken"/> to use for the HTTP request.</param>
Expand Down

0 comments on commit 80236f5

Please sign in to comment.