Skip to content

Commit

Permalink
[fix] Missing inheritance preventing Batch object use in parameter …
Browse files Browse the repository at this point in the history
…sets (#570)

- Fix missing inheritance preventing `Batch` object use in parameter sets
- Prep for v6.5.1 release
  • Loading branch information
nwithan8 authored Jun 10, 2024
1 parent cc1f0a9 commit 0798d36
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v6.5.1 (2024-06-10)

- Fix `Batch` object not allowed to be used in parameter sets due to missing `IBatchParameter` inheritance

## v6.5.0 (2024-06-05)

- Add missing parameters for `CustomsItem.Create` parameter set
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.5.0</version>
<version>6.5.1</version>
<authors>EasyPost</authors>
<owners>EasyPost</owners>
<projectUrl>https://www.easypost.com</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion EasyPost/Models/API/Batch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace EasyPost.Models.API
/// <summary>
/// Class representing an <a href="https://www.easypost.com/docs/api#batch-object">EasyPost batch</a>.
/// </summary>
public class Batch : EasyPostObject
public class Batch : EasyPostObject, Parameters.IBatchParameter
{
#region JSON Properties

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.5.0")]
[assembly: AssemblyFileVersion("6.5.0")]
[assembly: AssemblyInformationalVersion("6.5.0")]
[assembly: AssemblyVersion("6.5.1")]
[assembly: AssemblyFileVersion("6.5.1")]
[assembly: AssemblyInformationalVersion("6.5.1")]

0 comments on commit 0798d36

Please sign in to comment.