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

NLog 4.5 rc3 version and changelog #2460

Merged
merged 1 commit into from
Dec 11, 2017
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dotnet --version
# dotnet pack .\src\NLog\ --configuration release --include-symbols -o ..\..\artifacts

$versionPrefix = "4.5.0"
$versionSuffix = "rc02"
$versionSuffix = "rc03"
$versionFile = $versionPrefix + "." + ${env:APPVEYOR_BUILD_NUMBER}
$versionProduct = $versionPrefix;
if (-Not $versionSuffix.Equals(""))
Expand Down
10 changes: 8 additions & 2 deletions src/NLog/NLog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@

NLog 4.5 adds structured logging and .NET Standard support/UPW without breaking changes! Also a lot

# RC 2 main features
# RC 3 summary

- File target: support for writing BOM (WriteBom option)
- Futher memory allocation improvements

# RC 2 summary

- Support for UWP
- Added "regex-matches" condition method for filtering
Expand Down Expand Up @@ -49,6 +54,7 @@ NLog 4.5 adds structured logging and .NET Standard support/UPW without breaking
- NLogViewerTarget - Enable override of the Logger-name #2390
- ${sequenceid} added #2411
- Added "regex-matches" for filtering #2437
- File target: support for writing BOM (WriteBom option) #2456

## BugFixes:

Expand All @@ -62,7 +68,7 @@ NLog 4.5 adds structured logging and .NET Standard support/UPW without breaking
- Improve logging of callsite linenumber for async-methods #2386
- NLogTraceListener - DisableFlush is enabled by default when AutoFlush=true #2407
- NLogViewer - Better defaults for connection limits #2404
- LoggingConfiguration.LoggingRules is not thread safe #2393, 2418
- LoggingConfiguration.LoggingRules is not thread safe #2393, #2418

## Performance:

Expand Down