Skip to content

Commit a7d210a

Browse files
authored
Release v4.4.1 (#1061)
* RRR: Skip BA2021 Analysis on .NET R2R & NativeAOT PE on non-Windows Platforms. [#1013](#1013) * DEP: Dotnet update to 9.x. [#1024](#1024) * NEW: Dynamic Lookup of Compiler Name for Managed PE for BA4001 [#1049](#1049) * DEP: FluentAssertions version dependency update to 7.x due to a license change. [#1059](#1059)
1 parent 1924c55 commit a7d210a

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

ReleaseHistory.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616
- NEW => new feature
1717

1818
## UNRELEASED
19+
20+
## **v4.4.1**
21+
* RRR: Skip BA2021 Analysis on .NET R2R & NativeAOT PE on non-Windows Platforms. [#1013](https://github.com/microsoft/binskim/pull/1013)
1922
* DEP: Dotnet update to 9.x. [#1024](https://github.com/microsoft/binskim/pull/1024)
20-
* DEP: FluentAssertions version dependency update to 7.x due to a license change. [#1059](https://github.com/microsoft/binskim/pull/1059)
2123
* NEW: Dynamic Lookup of Compiler Name for Managed PE for BA4001 [#1049](https://github.com/microsoft/binskim/pull/1049)
24+
* DEP: FluentAssertions version dependency update to 7.x due to a license change. [#1059](https://github.com/microsoft/binskim/pull/1059)
2225

2326
## **v4.4.0**
2427
* NEW: Cross-Platform .rsp File Support. [#1016](https://github.com/microsoft/binskim/pull/1016)

SetCurrentVersion.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
set MAJOR_PREVIOUS=4
2-
set MINOR_PREVIOUS=3
3-
set PATCH_PREVIOUS=1
2+
set MINOR_PREVIOUS=4
3+
set PATCH_PREVIOUS=0
44
set PRERELEASE_PREVIOUS=
55

66
set MAJOR=4
77
set MINOR=4
8-
set PATCH=0
8+
set PATCH=1
99
set PRERELEASE=

src/BinaryParsers/VersionConstants.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ namespace Microsoft.CodeAnalysis.IL
55
public static class VersionConstants
66
{
77
public const string Prerelease = "";
8-
public const string AssemblyVersion = "4.4.0" + ".0";
9-
public const string FileVersion = "4.4.0" + ".0";
8+
public const string AssemblyVersion = "4.4.1" + ".0";
9+
public const string FileVersion = "4.4.1" + ".0";
1010
public const string Version = AssemblyVersion + Prerelease;
1111
}
1212
}

0 commit comments

Comments
 (0)