Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.3.1 #1008

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}
Loading