Skip to content

Commit 80236f5

Browse files
authored
- Bump version number (#577)
- Remove bad docstring links
1 parent 9540e8a commit 80236f5

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## Next Release
3+
## v6.7.0 (2024-07-24)
44

55
- Add new `Claim` service for filing claims on EasyPost shipments and insurances
66

EasyPost.nuspec

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

EasyPost/Models/API/Claim.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyPost.Models.API
99
{
1010
#pragma warning disable CA1724 // Naming conflicts with Parameters.Claim
1111
/// <summary>
12-
/// Class representing a <a href="https://www.easypost.com/docs/api#claim-object">EasyPost claim object</a>.
12+
/// Class representing a EasyPost claim object.
1313
/// </summary>
1414
public class Claim : EasyPostObject, Parameters.IClaimParameter
1515
{

EasyPost/Properties/VersionInfo.cs

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

EasyPost/Services/ClaimService.cs

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace EasyPost.Services
1010
{
1111
/// <summary>
12-
/// Class representing a set of <a href="https://www.easypost.com/docs/api#claims">claim-related functionality</a>.
12+
/// Class representing a set of claim-related functionality.
1313
/// </summary>
1414
// ReSharper disable once ClassNeverInstantiated.Global
1515
public class ClaimService : EasyPostService
@@ -27,7 +27,6 @@ internal ClaimService(EasyPostClient client)
2727

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

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

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

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

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

0 commit comments

Comments
 (0)