diff --git a/CHANGELOG.md b/CHANGELOG.md index 56eb7d668..443e5922c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,11 @@ ## Next Release -- Adds `billing_type` attribute in CarrierAccount and Rate classes. -- Collect OS details in User-Agent header. +- Adds `DeletePaymentMethod`, `FundWallet`, and `RetrievePaymentMethods` functions +- Adds `billing_type` attribute in CarrierAccount and Rate classes +- Adds support for webhook secrets +- Collect OS details in User-Agent header +- Update functions now use `patch` instead of `put` under the hood to better match the API behavior and documentation. Behavior of these functions should remain the same ## v3.1.0 (2022-05-19) diff --git a/EasyPost.nuspec b/EasyPost.nuspec index b99eab59b..29b3ae099 100644 --- a/EasyPost.nuspec +++ b/EasyPost.nuspec @@ -3,7 +3,7 @@ EasyPost-Official EasyPost (Official) - 3.1.0 + 3.2.0 EasyPost EasyPost https://www.easypost.com diff --git a/EasyPost/Properties/VersionInfo.cs b/EasyPost/Properties/VersionInfo.cs index 0fcb8ddf2..494388f94 100644 --- a/EasyPost/Properties/VersionInfo.cs +++ b/EasyPost/Properties/VersionInfo.cs @@ -1,6 +1,6 @@ using System.Reflection; // Version information for an assembly must follow semantic versioning -[assembly: AssemblyVersion("3.1.0")] -[assembly: AssemblyFileVersion("3.1.0")] -[assembly: AssemblyInformationalVersion("3.1.0")] +[assembly: AssemblyVersion("3.2.0")] +[assembly: AssemblyFileVersion("3.2.0")] +[assembly: AssemblyInformationalVersion("3.2.0")]