Skip to content

Commit

Permalink
Merge pull request #347 from NLog/release/1.6
Browse files Browse the repository at this point in the history
Version 1.6 and changelog
  • Loading branch information
304NotModified authored Oct 7, 2019
2 parents b803a6b + f415482 commit 0428643
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

Date format: (year/month/day)

### v1.6.0 (2019/09/24)
- [#342](https://github.com/NLog/NLog.Extensions.Logging/pull/342) ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog
- [#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

### v1.6.0 (2019/10/07)
- [#332](https://github.com/NLog/NLog.Extensions.Logging/pull/332) Support .NET Core 3.0 (@304NotModified)
- [#342](https://github.com/NLog/NLog.Extensions.Logging/pull/342) ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog (#342) (@snakefoot)
- [#345](https://github.com/NLog/NLog.Extensions.Logging/pull/345) Added AddNLog with functor to create/initialize LogFactory for NLogLoggingProvider (@snakefoot)
- [#344](https://github.com/NLog/NLog.Extensions.Logging/pull/344) Introduce AddNLog with NLog-config parameter (#344) (@snakefoot)
- [#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

### v1.5.4 (2019/09/06)
- [#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)
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 = "1.5.4"
$versionPrefix = "1.6.0"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
8 changes: 5 additions & 3 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
</Description>
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore</PackageTags>
<PackageReleaseNotes>
- Marked ILoggerFactory extension methods as obsolete, since obsolete in NetCore3
- Minor optimization in parsing of LogEvent property-names
- Updated NLog dependency
- Support .NET Core 3.0 (@304NotModified)
- ILoggerFactory is obsolete in .NET Core 3. Instead use ILoggingBuilder.AddNLog (#342) (@snakefoot)
- Added AddNLog with functor to create/initialize LogFactory for NLogLoggingProvider (@snakefoot)
- Introduce AddNLog with NLog-config parameter (#344) (@snakefoot)
- Minor optimizations in parsing of LogEvent property-names

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

0 comments on commit 0428643

Please sign in to comment.