diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f50069e3..3b1b82034 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # CHANGELOG -## Next Release +## v4.1.0 (2022-12-07) -- [ADDED] Support for creating/registering carrier accounts that require custom workflows (e.g. FedEx, UPS) -- [CHANGED] `Constants` are now stored in `EasyPost.Constants` instead of `EasyPost.Exceptions.Constants` -- [FIXED] Typo in endpoint was causing bank/card charge requests to fail +- Routes requests for creating a carrier account with a custom workflow (eg: FedEx, UPS) to the correct endpoint when using the `Create` function +- `Constants` are now stored in `EasyPost.Constants` instead of `EasyPost.Exceptions.Constants` +- Fixed a typo in `/charges` endpoint that was causing bank and credit card charge requests to fail ## v4.0.2 (2022-11-01) diff --git a/EasyPost.nuspec b/EasyPost.nuspec index eae1dcfa7..c12878a05 100644 --- a/EasyPost.nuspec +++ b/EasyPost.nuspec @@ -3,7 +3,7 @@ EasyPost-Official EasyPost (Official) - 4.0.2 + 4.1.0 EasyPost EasyPost https://www.easypost.com diff --git a/EasyPost/Properties/VersionInfo.cs b/EasyPost/Properties/VersionInfo.cs index 795d78c3f..e5b111134 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("4.0.2")] -[assembly: AssemblyFileVersion("4.0.2")] -[assembly: AssemblyInformationalVersion("4.0.2")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyInformationalVersion("4.1.0")]