Skip to content

Commit 0428643

Browse files
Merge pull request #347 from NLog/release/1.6
Version 1.6 and changelog
2 parents b803a6b + f415482 commit 0428643

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.MD

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

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

5-
### v1.6.0 (2019/09/24)
6-
- [#342](https://github.com/NLog/NLog.Extensions.Logging/pull/342) ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog
7-
- [#333](https://github.com/NLog/NLog.Extensions.Logging/pull/333) + [#334](https://github.com/NLog/NLog.Extensions.Logging/pull/334) Minor optimization in parsing of LogEvent property-names
5+
6+
### v1.6.0 (2019/10/07)
7+
- [#332](https://github.com/NLog/NLog.Extensions.Logging/pull/332) Support .NET Core 3.0 (@304NotModified)
8+
- [#342](https://github.com/NLog/NLog.Extensions.Logging/pull/342) ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog (#342) (@snakefoot)
9+
- [#345](https://github.com/NLog/NLog.Extensions.Logging/pull/345) Added AddNLog with functor to create/initialize LogFactory for NLogLoggingProvider (@snakefoot)
10+
- [#344](https://github.com/NLog/NLog.Extensions.Logging/pull/344) Introduce AddNLog with NLog-config parameter (#344) (@snakefoot)
11+
- [#333](https://github.com/NLog/NLog.Extensions.Logging/pull/333) + [#334](https://github.com/NLog/NLog.Extensions.Logging/pull/334) Minor optimizations in parsing of LogEvent property-names
812

913
### v1.5.4 (2019/09/06)
1014
- [#325](https://github.com/NLog/NLog.Extensions.Logging/pull/325) Fix dispose for AddNLog (on ILoggingBuilder) and no double logging when also using UseNLog (@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 = "1.5.4"
5+
$versionPrefix = "1.6.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 & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
1818
</Description>
1919
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
2020
<PackageReleaseNotes>
21-
- Marked ILoggerFactory extension methods as obsolete, since obsolete in NetCore3
22-
- Minor optimization in parsing of LogEvent property-names
23-
- Updated NLog dependency
21+
- Support .NET Core 3.0 (@304NotModified)
22+
- ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog (#342) (@snakefoot)
23+
- Added AddNLog with functor to create/initialize LogFactory for NLogLoggingProvider (@snakefoot)
24+
- Introduce AddNLog with NLog-config parameter (#344) (@snakefoot)
25+
- Minor optimizations in parsing of LogEvent property-names
2426

2527
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
2628
</PackageReleaseNotes>

0 commit comments

Comments
 (0)