diff --git a/SetCurrentVersion.cmd b/SetCurrentVersion.cmd index 9a4e21e46..cb67dd39f 100644 --- a/SetCurrentVersion.cmd +++ b/SetCurrentVersion.cmd @@ -1,9 +1,9 @@ set MAJOR_PREVIOUS=1 set MINOR_PREVIOUS=9 set PATCH_PREVIOUS=0 -set PRERELEASE_PREVIOUS=-prerelease1 +set PRERELEASE_PREVIOUS=-prerelease2 set MAJOR=1 set MINOR=9 set PATCH=0 -set PRERELEASE=-prerelease2 +set PRERELEASE=-prerelease3 diff --git a/src/BinaryParsers/VersionConstants.cs b/src/BinaryParsers/VersionConstants.cs index 9d67fbc8b..73889015b 100644 --- a/src/BinaryParsers/VersionConstants.cs +++ b/src/BinaryParsers/VersionConstants.cs @@ -4,7 +4,7 @@ namespace Microsoft.CodeAnalysis.IL { public static class VersionConstants { - public const string Prerelease = "-prerelease2"; + public const string Prerelease = "-prerelease3"; public const string AssemblyVersion = "1.9.0" + ".0"; public const string FileVersion = "1.9.0" + ".0"; public const string Version = AssemblyVersion + Prerelease; diff --git a/src/ReleaseHistory.md b/src/ReleaseHistory.md index 03328efcd..8ddf64a0c 100644 --- a/src/ReleaseHistory.md +++ b/src/ReleaseHistory.md @@ -2,6 +2,14 @@ ## Unreleased +## **v1.9.0-prerelease3** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.0-prerelease3) + +* BUGFIX: Fix exception when collecting telemetry. [486](https://github.com/microsoft/binskim/pull/486), [#487](https://github.com/microsoft/binskim/pull/487) +* FEATURE: Collect/Send assembly references when rule BA4001 is enabled. [#493](https://github.com/microsoft/binskim/pull/493) +* FEATURE: Enable multithread analysis. [#495](https://github.com/microsoft/binskim/pull/495) +* FEATURE: Package `BinaryParsers` project as a new nuget. [#502](https://github.com/microsoft/binskim/pull/502) +* FEATURE: Do not return 1 when `ignorePdbLoadError` is enabled for PDB loading issues. [#506](https://github.com/microsoft/binskim/pull/506) + ## **v1.9.0-prerelease2** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.0-prerelease2) * BUGFIX: Fix exception handling when PDB cannot be loaded by `IDiaDataSource`. [#461](https://github.com/microsoft/binskim/pull/461)