From 9b25c14332506010fd750c2df29434fe5bb0a75e Mon Sep 17 00:00:00 2001 From: Nate Harris Date: Mon, 14 Aug 2023 15:33:17 -0600 Subject: [PATCH] Bump version to 5.4.0 (#504) --- CHANGELOG.md | 5 +++++ EasyPost.nuspec | 2 +- EasyPost/Properties/VersionInfo.cs | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb46b025f..2c17cb4bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v5.4.0 (2023-08-14) + +- Make the `Id` property of any `EasyPostObject`-based object instance settable (previously, this was read-only) + - This will allow users to make temporary references to existing objects in Parameter sets without having to retrieve the object from the API first + ## v5.3.0 (2023-07-28) - Maps 400 status codes to new `BadRequestError` class diff --git a/EasyPost.nuspec b/EasyPost.nuspec index 670dcb8b7..60b3d43b9 100644 --- a/EasyPost.nuspec +++ b/EasyPost.nuspec @@ -3,7 +3,7 @@ EasyPost-Official EasyPost (Official) - 5.3.0 + 5.4.0 EasyPost EasyPost https://www.easypost.com diff --git a/EasyPost/Properties/VersionInfo.cs b/EasyPost/Properties/VersionInfo.cs index 5a0d0382c..26e389e8c 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("5.3.0")] -[assembly: AssemblyFileVersion("5.3.0")] -[assembly: AssemblyInformationalVersion("5.3.0")] +[assembly: AssemblyVersion("5.4.0")] +[assembly: AssemblyFileVersion("5.4.0")] +[assembly: AssemblyInformationalVersion("5.4.0")]