Skip to content

Commit

Permalink
Releasing stable version v1.9.1 (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddynaka authored Jan 11, 2022
1 parent 523cd9f commit 91b8a1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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=0
set PRERELEASE_PREVIOUS=-prerelease3
set PRERELEASE_PREVIOUS=

set MAJOR=1
set MINOR=9
set PATCH=0
set PATCH=1
set PRERELEASE=
6 changes: 3 additions & 3 deletions src/BinaryParsers/VersionConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ namespace Microsoft.CodeAnalysis.IL
{
public static class VersionConstants
{
public const string Prerelease = "-prerelease3";
public const string AssemblyVersion = "1.9.0" + ".0";
public const string FileVersion = "1.9.0" + ".0";
public const string Prerelease = "";
public const string AssemblyVersion = "1.9.1" + ".0";
public const string FileVersion = "1.9.1" + ".0";
public const string Version = AssemblyVersion + Prerelease;
}
}
4 changes: 2 additions & 2 deletions src/ReleaseHistory.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# BinSkim Release History

## Unreleased
## **v1.9.1** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/1.9.1)

* BUGFIX: Fix incorrect analysis for non-Microsoft compiler on BA2006.BuildWithSecureTools [545](https://github.com/microsoft/binskim/pull/545)
* BUGFIX: Fix incorrect analysis for non-Microsoft compiler on BA2006.BuildWithSecureTools. [545](https://github.com/microsoft/binskim/pull/545)
* BUGFIX: Fix `JsonSerializationException` that occurs when saving SARIF v1 with telemetry enabled. [#535](https://github.com/microsoft/binskim/pull/535)
* BUGFIX: Fix `NullReferenceException` when `--Hashes` and telemetry rules are enabled. [#531](https://github.com/microsoft/binskim/pull/531)

Expand Down

0 comments on commit 91b8a1c

Please sign in to comment.