diff --git a/CHANGELOG.md b/CHANGELOG.md index eb68b3e..f8bca4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.3.1 (2022-05-26) + +- Improvements to censoring + - Null values won't be replaced during censoring, avoid interfering with de/serialization + - Censoring runs recursively through nested dictionaries and lists + ## v0.3.0 (2022-05-24) - Performance improvements to censoring diff --git a/EasyVCR.nuspec b/EasyVCR.nuspec index 01007ee..ccdb050 100644 --- a/EasyVCR.nuspec +++ b/EasyVCR.nuspec @@ -3,7 +3,7 @@ EasyVCR EasyVCR - 0.3.0 + 0.3.1 EasyPost EasyPost https://github.com/EasyPost/easyvcr-csharp diff --git a/EasyVCR/Properties/VersionInfo.cs b/EasyVCR/Properties/VersionInfo.cs index c7ba57b..df6ac77 100644 --- a/EasyVCR/Properties/VersionInfo.cs +++ b/EasyVCR/Properties/VersionInfo.cs @@ -1,6 +1,6 @@ using System.Reflection; // Version information for an assembly must follow semantic versioning -[assembly: AssemblyVersion("0.3.0")] -[assembly: AssemblyFileVersion("0.3.0")] -[assembly: AssemblyInformationalVersion("0.3.0")] +[assembly: AssemblyVersion("0.3.1")] +[assembly: AssemblyFileVersion("0.3.1")] +[assembly: AssemblyInformationalVersion("0.3.1")]