Skip to content

Commit 0798d36

Browse files
authored
[fix] Missing inheritance preventing Batch object use in parameter sets (#570)
- Fix missing inheritance preventing `Batch` object use in parameter sets - Prep for v6.5.1 release
1 parent cc1f0a9 commit 0798d36

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## v6.5.1 (2024-06-10)
4+
5+
- Fix `Batch` object not allowed to be used in parameter sets due to missing `IBatchParameter` inheritance
6+
37
## v6.5.0 (2024-06-05)
48

59
- Add missing parameters for `CustomsItem.Create` parameter set

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

EasyPost/Models/API/Batch.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace EasyPost.Models.API
1010
/// <summary>
1111
/// Class representing an <a href="https://www.easypost.com/docs/api#batch-object">EasyPost batch</a>.
1212
/// </summary>
13-
public class Batch : EasyPostObject
13+
public class Batch : EasyPostObject, Parameters.IBatchParameter
1414
{
1515
#region JSON Properties
1616

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

0 commit comments

Comments
 (0)