From 5ae8d81528af4d986e8ba6a5e950492d132d794e Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Tue, 29 Dec 2020 02:02:08 +0100
Subject: [PATCH 1/5] Release 1.7.0
---
CHANGELOG.MD | 6 ++++++
build.ps1 | 2 +-
.../NLog.Extensions.Logging.csproj | 8 ++++----
3 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index c712e4db..235c75be 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -2,6 +2,12 @@
Date format: (year/month/day)
+### v1.7.0 (2020/12/30)
+- [#456](https://github.com/NLog/NLog.Extensions.Logging/pull/456) Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
+- [#451](https://github.com/NLog/NLog.Extensions.Logging/pull/451) NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
+- [#461](https://github.com/NLog/NLog.Extensions.Logging/pull/461) Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
+- [#450](https://github.com/NLog/NLog.Extensions.Logging/pull/450) Bump NLog from 4.7.4 to 4.7.6 (#450, 458) (@dependabot[bot])
+
### v1.6.5 (2020/08/27)
- [#444](https://github.com/NLog/NLog.Extensions.Logging/pull/444) Fix ShutdownOnDispose to work with isolated LogFactory (#444) (@snakefoot)
- [#439](https://github.com/NLog/NLog.Extensions.Logging/pull/439) Added SourceLink (#439) (@304NotModified)
diff --git a/build.ps1 b/build.ps1
index bb895044..12b36cb4 100644
--- a/build.ps1
+++ b/build.ps1
@@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version
-$versionPrefix = "1.6.5"
+$versionPrefix = "1.7.0"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
diff --git a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
index 4c6dd3e6..23f3718f 100644
--- a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
+++ b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
@@ -19,10 +19,10 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore
-- Fix ShutdownOnDispose to work with isolated LogFactory (#444) (@snakefoot)
-- Added SourceLink (#439) (@304NotModified)
-- Fix documentation of default (#429) (@304NotModified)
-- Bump NLog from 4.7.3 to 4.7.4 (#448) (@dependabot[bot])
+- Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
+- NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
+- Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
+- Bump NLog from 4.7.4 to 4.7.6 (#450, 458) (@dependabot[bot])
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
From 3b2c23d81b8e80fede741bd9afc2efceaf02a000 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Tue, 29 Dec 2020 02:02:46 +0100
Subject: [PATCH 2/5] Update NLog.Extensions.Logging.csproj
---
src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
index 23f3718f..a5185ce0 100644
--- a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
+++ b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
@@ -22,7 +22,7 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
- Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
- NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
- Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
-- Bump NLog from 4.7.4 to 4.7.6 (#450, 458) (@dependabot[bot])
+- Bump NLog from 4.7.4 to 4.7.6 (#450, #458) (@dependabot[bot])
Full changelog: https://github.com/NLog/NLog.Extensions.Logging/blob/master/CHANGELOG.MD
From 20e9ba76c5601ce0a45a747671ecf0761585dc25 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Tue, 29 Dec 2020 02:03:00 +0100
Subject: [PATCH 3/5] Update CHANGELOG.MD
---
CHANGELOG.MD | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index 235c75be..a4bc5e00 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -6,7 +6,7 @@ Date format: (year/month/day)
- [#456](https://github.com/NLog/NLog.Extensions.Logging/pull/456) Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
- [#451](https://github.com/NLog/NLog.Extensions.Logging/pull/451) NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
- [#461](https://github.com/NLog/NLog.Extensions.Logging/pull/461) Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
-- [#450](https://github.com/NLog/NLog.Extensions.Logging/pull/450) Bump NLog from 4.7.4 to 4.7.6 (#450, 458) (@dependabot[bot])
+- [#450](https://github.com/NLog/NLog.Extensions.Logging/pull/458) Bump NLog from 4.7.4 to 4.7.6 (#450, #458) (@dependabot[bot])
### v1.6.5 (2020/08/27)
- [#444](https://github.com/NLog/NLog.Extensions.Logging/pull/444) Fix ShutdownOnDispose to work with isolated LogFactory (#444) (@snakefoot)
From 748f4c648d3685c9990426fc6d323e62dd5a7458 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Tue, 29 Dec 2020 02:06:02 +0100
Subject: [PATCH 4/5] Update CHANGELOG.MD
---
CHANGELOG.MD | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/CHANGELOG.MD b/CHANGELOG.MD
index a4bc5e00..73e8f559 100644
--- a/CHANGELOG.MD
+++ b/CHANGELOG.MD
@@ -3,7 +3,7 @@
Date format: (year/month/day)
### v1.7.0 (2020/12/30)
-- [#456](https://github.com/NLog/NLog.Extensions.Logging/pull/456) Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
+- [#456](https://github.com/NLog/NLog.Extensions.Logging/pull/456) Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope and added .NET 5 build (#456) (@snakefoot)
- [#451](https://github.com/NLog/NLog.Extensions.Logging/pull/451) NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
- [#461](https://github.com/NLog/NLog.Extensions.Logging/pull/461) Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
- [#450](https://github.com/NLog/NLog.Extensions.Logging/pull/458) Bump NLog from 4.7.4 to 4.7.6 (#450, #458) (@dependabot[bot])
From d043c32ef06cf4da3a8eeebeaf70b1e99d691a1c Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Tue, 29 Dec 2020 02:06:29 +0100
Subject: [PATCH 5/5] Update NLog.Extensions.Logging.csproj
---
src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
index a5185ce0..e7f5ad90 100644
--- a/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
+++ b/src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
@@ -19,7 +19,7 @@ For ASP.NET Core, use NLog.Web.AspNetCore: https://www.nuget.org/packages/NLog.W
NLog;Microsoft.Extensions.Logging;log;logging;logfiles;netcore
-- Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope, added .NET 5 build, move tests to .NET Core LTS (#456) (@snakefoot)
+- Added NLogProviderOptions.IncludeActivtyIdsWithBeginScope and added .NET 5 build (#456) (@snakefoot)
- NLogBeginScopeParser - Reduce allocation for BeginScope with message template (#451) (@snakefoot)
- Move to PackageIcon and PackageLicenseExpression for NuGet package (#461) (@snakefoot)
- Bump NLog from 4.7.4 to 4.7.6 (#450, #458) (@dependabot[bot])