Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing v1.9.4 #614

Merged
merged 2 commits into from
Mar 14, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SetCurrentVersion.cmd
Original file line number Diff line number Diff line change
@@ -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=
4 changes: 2 additions & 2 deletions src/BinaryParsers/VersionConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
2 changes: 1 addition & 1 deletion src/ReleaseHistory.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BinSkim Release History

## Unreleased
## v1.9.4** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.4)
Copy link
Contributor

@eddynaka eddynaka Mar 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is missing the ** at the beginning #Resolved


* 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)
Expand Down