Skip to content

Commit

Permalink
Release v4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AllDwarf committed Aug 12, 2024
1 parent afaeb6d commit 7fe551a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions ReleaseHistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
- NEW => new feature

## UNRELEASED
* DEP: Update `msdia140.dll` from 14.40.33810.0 to 14.40.33812
* BUG: Fix `TryGetPortablePdbMetadataReader` unexpectedly causes `UnauthorizedAccessException` error when the PDB file is missing. [1001](https://github.com/microsoft/binskim/pull/1001).

## **v4.3.1** [NuGet Package](https://www.nuget.org/packages/Microsoft.CodeAnalysis.BinSkim/4.3.1)
* DEP: Update `msdia140.dll` from 14.40.33810.0 to 14.40.33812. [1000](https://github.com/microsoft/binskim/pull/1002)
* BUG: Fix `TryGetPortablePdbMetadataReader` unexpectedly causes `UnauthorizedAccessException` error when the PDB file is missing. [1004](https://github.com/microsoft/binskim/pull/1004)
* BUG: Fork telemetry to log always to Console and AppInsights in the same time when Error occur. [1002](https://github.com/microsoft/binskim/pull/1002)

## **v4.3.0**
Expand Down
6 changes: 3 additions & 3 deletions SetCurrentVersion.cmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
set MAJOR_PREVIOUS=4
set MINOR_PREVIOUS=2
set PATCH_PREVIOUS=2
set MINOR_PREVIOUS=3
set PATCH_PREVIOUS=0
set PRERELEASE_PREVIOUS=

set MAJOR=4
set MINOR=3
set PATCH=0
set PATCH=1
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 = "4.3.0" + ".0";
public const string FileVersion = "4.3.0" + ".0";
public const string AssemblyVersion = "4.3.1" + ".0";
public const string FileVersion = "4.3.1" + ".0";
public const string Version = AssemblyVersion + Prerelease;
}
}

0 comments on commit 7fe551a

Please sign in to comment.