From 655c6a44c5d8ee4ba3ad0d8fe517bb3643759ea4 Mon Sep 17 00:00:00 2001 From: Mary Martin Date: Mon, 14 Mar 2022 01:33:19 -0700 Subject: [PATCH 1/2] Preparing to release v.1.9.4 --- SetCurrentVersion.cmd | 4 ++-- src/BinaryParsers/VersionConstants.cs | 4 ++-- src/ReleaseHistory.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SetCurrentVersion.cmd b/SetCurrentVersion.cmd index c5d5b14dd..bfe8351d3 100644 --- a/SetCurrentVersion.cmd +++ b/SetCurrentVersion.cmd @@ -1,9 +1,9 @@ set MAJOR_PREVIOUS=1 set MINOR_PREVIOUS=9 -set PATCH_PREVIOUS=2 +set PATCH_PREVIOUS=3 set PRERELEASE_PREVIOUS= set MAJOR=1 set MINOR=9 -set PATCH=3 +set PATCH=4 set PRERELEASE= diff --git a/src/BinaryParsers/VersionConstants.cs b/src/BinaryParsers/VersionConstants.cs index d05adc044..f9663b16c 100644 --- a/src/BinaryParsers/VersionConstants.cs +++ b/src/BinaryParsers/VersionConstants.cs @@ -5,8 +5,8 @@ namespace Microsoft.CodeAnalysis.IL public static class VersionConstants { public const string Prerelease = ""; - public const string AssemblyVersion = "1.9.3" + ".0"; - public const string FileVersion = "1.9.3" + ".0"; + public const string AssemblyVersion = "1.9.4" + ".0"; + public const string FileVersion = "1.9.4" + ".0"; public const string Version = AssemblyVersion + Prerelease; } } diff --git a/src/ReleaseHistory.md b/src/ReleaseHistory.md index aeb14491f..26cb3d722 100644 --- a/src/ReleaseHistory.md +++ b/src/ReleaseHistory.md @@ -1,6 +1,6 @@ # BinSkim Release History -## Unreleased +## v1.9.4** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.4) * FEATURE: Add new PE `CV_CFL_LANG` language code for `ALIASOBJ` and `Rust`. [530](https://github.com/microsoft/binskim/pull/530) * BUGFIX: Fix `BA2014.DoNotDisableStackProtectionForFunctions` to eliminate false positive reports that `GsDriverEntry` has disabled the stack protector. [551](https://github.com/microsoft/binskim/pull/551) From 1c5001951a0277a8c783b7ab23f44261d944d247 Mon Sep 17 00:00:00 2001 From: Mary Martin Date: Mon, 14 Mar 2022 09:05:23 -0700 Subject: [PATCH 2/2] Corrected typo --- src/ReleaseHistory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReleaseHistory.md b/src/ReleaseHistory.md index 26cb3d722..d62f58579 100644 --- a/src/ReleaseHistory.md +++ b/src/ReleaseHistory.md @@ -1,6 +1,6 @@ # BinSkim Release History -## v1.9.4** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.4) +## **v1.9.4** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.4) * FEATURE: Add new PE `CV_CFL_LANG` language code for `ALIASOBJ` and `Rust`. [530](https://github.com/microsoft/binskim/pull/530) * BUGFIX: Fix `BA2014.DoNotDisableStackProtectionForFunctions` to eliminate false positive reports that `GsDriverEntry` has disabled the stack protector. [551](https://github.com/microsoft/binskim/pull/551)