Skip to content

Commit 197deb1

Browse files
Merge pull request #234 from NLog/release/1.2.1
Version 1.2.1
2 parents 45c20bb + 8fd1b4d commit 197deb1

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.MD

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

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

5+
6+
### v1.2.1 (2018/08/05)
7+
- [#233](https://github.com/NLog/NLog.Extensions.Logging/pull/233) Fixed null-reference-exception when parsing empty scope-property collection (@snakefoot)
8+
- [#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)
9+
- [#229](https://github.com/NLog/NLog.Extensions.Logging/pull/229) BeginScope should accept any type of KeyValuePair (Swallow exceptions) (@snakefoot)
10+
511
### v1.2 (2018/07/20)
612
- [#223](https://github.com/NLog/NLog.Extensions.Logging/pull/223) BeginScope accepts any type of KeyValuePair and Dictionary (@snakefoot)
713

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

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
1717
<PackageTags>NLog;Microsoft.Extensions.Logging;log;logfiles;netcore;nlog</PackageTags>
1818
<PackageReleaseNotes>
1919

20-
1.2: BeginScope accepts any type of KeyValuePair and Dictionary (@snakefoot)
20+
- Fixed null-reference-exception when parsing empty scope-property collection (@snakefoot)
21+
- BeginScope: support for non-serializable objects + performance improvement (20-50% cpu, 35% times less allocations) (#232) (@snakefoot)
22+
- BeginScope should accept any type of KeyValuePair (Swallow exceptions) (@snakefoot)
23+
24+
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
25+
2126
</PackageReleaseNotes>
2227
<PackageIconUrl>http://nlog-project.org/NConfig.png</PackageIconUrl>
2328
<PackageProjectUrl>https://github.com/NLog/NLog.Extensions.Logging</PackageProjectUrl>

0 commit comments

Comments
 (0)