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

Version 5.3.8 #720

Merged
merged 1 commit into from
Dec 29, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Date format: (year/month/day)

### Version 5.3.8 (2023/12/29)

**Improvements**
- [#719](https://github.com/NLog/NLog.Extensions.Logging/pull/719): Fixed IncludeActivityIdsWithBeginScope to work with NET 8.0 (#719) (@Owen-Krueger)
- [#714](https://github.com/NLog/NLog.Extensions.Logging/pull/714): UseNLog includes EnvironmentName when loading NLog config (#714) (@snakefoot)
- [#720](https://github.com/NLog/NLog.Extensions.Logging/pull/720): Updated to NLog v5.2.8 (#720) (@Osnakefoot)

### Version 5.3.7 (2023/12/06)

**Improvements**
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.3.7"
$versionPrefix = "5.3.8"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
8 changes: 4 additions & 4 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
<PackageReleaseNotes>
ChangeLog:

- Added target platform for NET 8.0 (#705) (@snakefoot)
- Improve XML docs for AddNLog and UseNLog (#710) (@snakefoot)
- Updated to NLog v5.2.7 (#713) (@snakefoot)
- Fixed IncludeActivityIdsWithBeginScope to work with NET 8.0 (#719) (@Owen-Krueger)
- UseNLog includes EnvironmentName when loading NLog config (#714) (@snakefoot)
- Updated to NLog v5.2.8 (#720) (@Osnakefoot)

Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD

Expand Down Expand Up @@ -83,7 +83,7 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NLog" Version="5.2.7" />
<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
Expand Down