Skip to content

Commit

Permalink
Merge pull request #234 from NLog/release/1.2.1
Browse files Browse the repository at this point in the history
Version 1.2.1
  • Loading branch information
304NotModified authored Aug 5, 2018
2 parents 45c20bb + 8fd1b4d commit 197deb1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Date format: (year/month/day)


### v1.2.1 (2018/08/05)
- [#233](https://github.com/NLog/NLog.Extensions.Logging/pull/233) Fixed null-reference-exception when parsing empty scope-property collection (@snakefoot)
- [#232](https://github.com/NLog/NLog.Extensions.Logging/pull/232) BeginScope: support for non-serializable objects + performance improvement (20-50% cpu, 35% times less allocations) (#232) (@snakefoot)
- [#229](https://github.com/NLog/NLog.Extensions.Logging/pull/229) BeginScope should accept any type of KeyValuePair (Swallow exceptions) (@snakefoot)

### v1.2 (2018/07/20)
- [#223](https://github.com/NLog/NLog.Extensions.Logging/pull/223) BeginScope accepts any type of KeyValuePair and Dictionary (@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.2.0"
$versionPrefix = "1.2.1"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
7 changes: 6 additions & 1 deletion src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logfiles;netcore;nlog</PackageTags>
<PackageReleaseNotes>

1.2: BeginScope accepts any type of KeyValuePair and Dictionary (@snakefoot)
- Fixed null-reference-exception when parsing empty scope-property collection (@snakefoot)
- BeginScope: support for non-serializable objects + performance improvement (20-50% cpu, 35% times less allocations) (#232) (@snakefoot)
- BeginScope should accept any type of KeyValuePair (Swallow exceptions) (@snakefoot)

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

</PackageReleaseNotes>
<PackageIconUrl>http://nlog-project.org/NConfig.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/NLog/NLog.Extensions.Logging</PackageProjectUrl>
Expand Down

0 comments on commit 197deb1

Please sign in to comment.