Skip to content

Commit

Permalink
Update version for release 2.0.0-rc1. (#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcfanning authored Nov 16, 2022
1 parent bb5f8de commit df8ac07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 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=4
set PATCH_PREVIOUS=5
set PRERELEASE_PREVIOUS=

set MAJOR=1
set MINOR=9
set PATCH=5
set PRERELEASE=
set MAJOR=2
set MINOR=0
set PATCH=0
set PRERELEASE=-rc1
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 = "";
public const string AssemblyVersion = "1.9.5" + ".0";
public const string FileVersion = "1.9.5" + ".0";
public const string Prerelease = "-rc1";
public const string AssemblyVersion = "2.0.0" + ".0";
public const string FileVersion = "2.0.0" + ".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

## **v2.0.0** (Unreleased)
## **v2.0.0-rc1** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/2.0.0-rc1)
* BUGFIX: Eliminate `BA2004.EnableSecureSourceCodeHashing` false positives to Windows Runtime components (resulting from references to Win RT API metadata files).
* BREAKING: Removed SARIF 1.0 support from BinSkim. Now option `-v | --sarif-output-version` does not accept value `OneZeroZero`. [719](https://github.com/microsoft/binskim/pull/719)
* Update Sarif.Sdk submodule from [fc9a9df to e557b69](https://github.com/microsoft/sarif-sdk/compare/fc9a9dfb865096b5aaa9fa3651854670940f7459...e557b693000cfc2a19d50f2b6613f92222eabbff). Critically, this update resolves transient [`Collection modified`](https://github.com/microsoft/sarif-sdk/pull/2549) exception during analysis. [#722](https://github.com/microsoft/binskim/pull/722)
Expand Down

0 comments on commit df8ac07

Please sign in to comment.