From 5edd89e3aaf5ea46274c7e289c24948f5e953463 Mon Sep 17 00:00:00 2001 From: Shaopeng Li Date: Wed, 2 Aug 2023 14:27:44 -0700 Subject: [PATCH] Release v4.2.0 --- ReleaseHistory.md | 2 ++ SetCurrentVersion.cmd | 4 ++-- src/BinaryParsers/VersionConstants.cs | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ReleaseHistory.md b/ReleaseHistory.md index bbacf6f2..b6a40c37 100644 --- a/ReleaseHistory.md +++ b/ReleaseHistory.md @@ -16,6 +16,8 @@ - NEW => new feature ## UNRELEASED + +## **v4.2.0** * DEP: Remove `Microsoft.CodeAnalysis`. [#934](https://github.com/microsoft/binskim/pull/934) * DEP: Remove `Microsoft.CodeAnalysis.NetAnalyzers`. [#934](https://github.com/microsoft/binskim/pull/934) * DEP: Update `msdia140.dll` from 14.32.31326.0 to 14.36.32532.0. [936](https://github.com/microsoft/binskim/pull/936) diff --git a/SetCurrentVersion.cmd b/SetCurrentVersion.cmd index 511f9c7f..132aa796 100644 --- a/SetCurrentVersion.cmd +++ b/SetCurrentVersion.cmd @@ -1,9 +1,9 @@ set MAJOR_PREVIOUS=4 -set MINOR_PREVIOUS=0 +set MINOR_PREVIOUS=1 set PATCH_PREVIOUS=0 set PRERELEASE_PREVIOUS= set MAJOR=4 -set MINOR=1 +set MINOR=2 set PATCH=0 set PRERELEASE= diff --git a/src/BinaryParsers/VersionConstants.cs b/src/BinaryParsers/VersionConstants.cs index 22ee781a..101992e5 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 = "4.1.0" + ".0"; - public const string FileVersion = "4.1.0" + ".0"; + public const string AssemblyVersion = "4.2.0" + ".0"; + public const string FileVersion = "4.2.0" + ".0"; public const string Version = AssemblyVersion + Prerelease; } }