Skip to content

Commit 3af159d

Browse files
authored
Version 6.0.6 (#817)
1 parent 285de7a commit 3af159d

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.MD

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Date format: (year/month/day)
44

5+
### Version 6.0.6 (2025/11/09)
6+
7+
- [#817](https://github.com/NLog/NLog.Extensions.Logging/pull/817) Updated to NLog v6.0.6 (@snakefoot)
8+
- [#814](https://github.com/NLog/NLog.Extensions.Logging/pull/814) Avoid boxing ITuple when used for BeginScope (@snakefoot)
9+
- [#813](https://github.com/NLog/NLog.Extensions.Logging/pull/813) Allow BeginScope to perform reflection of KeyValuePair (@snakefoot)
10+
511
### Version 6.0.5 (2025/10/09)
612

713
- [#811](https://github.com/NLog/NLog.Extensions.Logging/pull/811) Updated to NLog v6.0.5 (@snakefoot)

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# creates NuGet package at \artifacts
33
dotnet --version
44

5-
$versionPrefix = "6.0.5"
5+
$versionPrefix = "6.0.6"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;

src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
1818
<PackageReleaseNotes>
1919
ChangeLog:
2020

21-
- Updated to NLog v6.0.5 (#811) (@snakefoot)
22-
- NLogLoggingConfiguration - ToString includes AutoReload=true (#809) (@snakefoot)
21+
- [#817] Updated to NLog v6.0.6 (@snakefoot)
22+
- [#814] Avoid boxing ITuple when used for BeginScope (@snakefoot)
23+
- [#813] Allow BeginScope to perform reflection of KeyValuePair (@snakefoot)
2324

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

@@ -71,7 +72,7 @@ List of major changes in NLog 6.0: https://nlog-project.org/2025/04/29/nlog-6-0-
7172
</PropertyGroup>
7273

7374
<ItemGroup>
74-
<PackageReference Include="NLog" Version="6.0.5" />
75+
<PackageReference Include="NLog" Version="6.0.6" />
7576
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
7677
</ItemGroup>
7778
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">

0 commit comments

Comments
 (0)