From 1ffff69f843752050b2f7ca022c52d89beea1561 Mon Sep 17 00:00:00 2001 From: Justintime50 <39606064+Justintime50@users.noreply.github.com> Date: Mon, 11 Jul 2022 14:20:26 -0600 Subject: [PATCH] chore: prepare v3.2.0 for release --- CHANGELOG.md | 7 +++++-- EasyPost.nuspec | 2 +- EasyPost/Properties/VersionInfo.cs | 6 +++--- 3 files changed, 9 insertions(+), 6 deletions(-) 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")]