Skip to content

Commit df8ac07

Browse files
Update version for release 2.0.0-rc1. (#741)
1 parent bb5f8de commit df8ac07

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

SetCurrentVersion.cmd

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
set MAJOR_PREVIOUS=1
22
set MINOR_PREVIOUS=9
3-
set PATCH_PREVIOUS=4
3+
set PATCH_PREVIOUS=5
44
set PRERELEASE_PREVIOUS=
55

6-
set MAJOR=1
7-
set MINOR=9
8-
set PATCH=5
9-
set PRERELEASE=
6+
set MAJOR=2
7+
set MINOR=0
8+
set PATCH=0
9+
set PRERELEASE=-rc1

src/BinaryParsers/VersionConstants.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ namespace Microsoft.CodeAnalysis.IL
44
{
55
public static class VersionConstants
66
{
7-
public const string Prerelease = "";
8-
public const string AssemblyVersion = "1.9.5" + ".0";
9-
public const string FileVersion = "1.9.5" + ".0";
7+
public const string Prerelease = "-rc1";
8+
public const string AssemblyVersion = "2.0.0" + ".0";
9+
public const string FileVersion = "2.0.0" + ".0";
1010
public const string Version = AssemblyVersion + Prerelease;
1111
}
1212
}

src/ReleaseHistory.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BinSkim Release History
22

3-
## **v2.0.0** (Unreleased)
3+
## **v2.0.0-rc1** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/2.0.0-rc1)
44
* BUGFIX: Eliminate `BA2004.EnableSecureSourceCodeHashing` false positives to Windows Runtime components (resulting from references to Win RT API metadata files).
55
* 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)
66
* 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)

0 commit comments

Comments
 (0)