From b28d631f30875d4c95c78acd4990238944f66ef2 Mon Sep 17 00:00:00 2001 From: Rolf Kristensen Date: Thu, 21 Nov 2024 07:48:10 +0100 Subject: [PATCH] Version 5.3.15 (#774) --- CHANGELOG.MD | 8 ++++++++ build.ps1 | 2 +- .../NLog.Extensions.Logging.csproj | 7 ++++--- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 3ca4741a..6de6b43f 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -2,6 +2,14 @@ Date format: (year/month/day) +### Version 5.3.15 (2024/11/21) + +**Improvements** +- [#773](https://github.com/NLog/NLog.Extensions.Logging/pull/773): UseNLog allow fallback to only EnvironmentName for NLog config (#773) (@snakefoot) +- [#771](https://github.com/NLog/NLog.Extensions.Logging/pull/771): NLogMessageParameterList - Optimize the index operator (#771) (@snakefoot) +- [#770](https://github.com/NLog/NLog.Extensions.Logging/pull/770): NLogMessageParameterList - Simplify the index operator (#770) (@snakefoot) +- [#768](https://github.com/NLog/NLog.Extensions.Logging/pull/768): Recognize ITuple for better AOT support (#768) (@snakefoot) + ### Version 5.3.14 (2024/09/23) **Improvements** diff --git a/build.ps1 b/build.ps1 index 3ecc879b..2ec3cc11 100644 --- a/build.ps1 +++ b/build.ps1 @@ -2,7 +2,7 @@ # creates NuGet package at \artifacts dotnet --version -$versionPrefix = "5.3.14" +$versionPrefix = "5.3.15" $versionSuffix = "" $versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER} $versionProduct = $versionPrefix; diff --git a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj index ecd8c2a7..9cf0cdb0 100644 --- a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj +++ b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj @@ -20,9 +20,10 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore ChangeLog: -- UseNLog should fallback after checking ContentRoot for NLog.config (#765) (@snakefoot) -- NLogLoggingConfiguration - Fix memory-leak when using AutoReload (#761) (@snakefoot) -- Updated to NLog v5.3.4 (#761) (@snakefoot) +- UseNLog allow fallback to only EnvironmentName for NLog config (#773) (@snakefoot) +- NLogMessageParameterList - Optimize the index operator (#771) (@snakefoot) +- NLogMessageParameterList - Simplify the index operator (#770) (@snakefoot) +- Recognize ITuple for better AOT support (#768) (@snakefoot) Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD