Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 5.3.7 #713

Merged
merged 1 commit into from Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.MD
Expand Up @@ -2,6 +2,13 @@

Date format: (year/month/day)

### Version 5.3.7 (2023/12/06)

**Improvements**
- [#705](https://github.com/NLog/NLog.Extensions.Logging/pull/705): Added target platform for NET 8.0 (#705) (@snakefoot)
- [#710](https://github.com/NLog/NLog.Extensions.Logging/pull/710): Improve XML docs for AddNLog and UseNLog (#710) (@snakefoot)
- [#713](https://github.com/NLog/NLog.Extensions.Logging/pull/713): Updated to NLog v5.2.7 (#713) (@snakefoot)

### Version 5.3.5 (2023/10/15)

**Improvements**
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Expand Up @@ -2,7 +2,7 @@
# creates NuGet package at \artifacts
dotnet --version

$versionPrefix = "5.3.5"
$versionPrefix = "5.3.7"
$versionSuffix = ""
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
Expand Down
6 changes: 4 additions & 2 deletions src/NLog.Extensions.Logging/NLog.Extensions.Logging.csproj
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard1.3;netstandard1.5;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
Expand All @@ -18,7 +18,9 @@ For ASP.NET Core, check: https://www.nuget.org/packages/NLog.Web.AspNetCore
<PackageReleaseNotes>
ChangeLog:

- Updated to NLog v5.2.5 (#695) (@snakefoot)
- Added target platform for NET 8.0 (#705) (@snakefoot)
- Improve XML docs for AddNLog and UseNLog (#710) (@snakefoot)
- Updated to NLog v5.2.7 (#713) (@snakefoot)

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

Expand Down