Skip to content

Commit 5caec9d

Browse files
authored
Version 5.5 (#785)
1 parent e5a059a commit 5caec9d

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.MD

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

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

5+
### Version 5.5 (2025/05/29)
6+
7+
**Improvements**
8+
- [#780](https://github.com/NLog/NLog.Extensions.Logging/pull/780): Added UseNLog extension method for IHostApplicationBuilder (#780) (@mikezw)
9+
- [#782](https://github.com/NLog/NLog.Extensions.Logging/pull/782): Added UseNLog extension method with isolated LogFactory support (#782) (@snakefoot)
10+
- [#783](https://github.com/NLog/NLog.Extensions.Logging/pull/783): Added AddNLog extension method for IServiceCollection (#783) (@snakefoot)
11+
- [#785](https://github.com/NLog/NLog.Extensions.Logging/pull/785): Updated to NLog v5.5 (#785) (@snakefoot)
12+
513
### Version 5.4 (2025/02/02)
614

715
**Improvements**

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 = "5.4.0"
5+
$versionPrefix = "5.5.0"
66
$versionSuffix = ""
77
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
88
$versionProduct = $versionPrefix;

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
2020
<PackageReleaseNotes>
2121
ChangeLog:
2222

23-
- MicrosoftConsoleJsonLayout - TimestampLayout replaced by DateLayoutRenderer (#775) (@snakefoot)
24-
- NLogLoggerFactory - New constructor with isolated NLog LogFactory as input parameter (#778) (@snakefoot)
25-
- Updated to NLog v5.4 (#778) (@snakefoot)
23+
- Added UseNLog extension method for IHostApplicationBuilder (#780) (@mikezw)
24+
- Added UseNLog extension method with isolated LogFactory support (#782) (@snakefoot)
25+
- Added AddNLog extension method for IServiceCollection (#783) (@snakefoot)
26+
- Updated to NLog v5.5 (#785) (@snakefoot)
2627

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

@@ -85,7 +86,7 @@ List of major changes in NLog 5.0: https://nlog-project.org/2021/08/25/nlog-5-0-
8586
</PropertyGroup>
8687

8788
<ItemGroup>
88-
<PackageReference Include="NLog" Version="5.4.0" />
89+
<PackageReference Include="NLog" Version="5.5.0" />
8990
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
9091
</ItemGroup>
9192
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">

0 commit comments

Comments
 (0)