Skip to content

Commit 2138e44

Browse files
release 4.3.0
1 parent 50c01a9 commit 2138e44

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/) and is followi
66

77
## Unreleased
88

9+
## [4.3.0] - 2018-02-01
10+
911
### Added
1012

1113
- Event formatter called `NamespacedTextFormatter` suited for a micro-service architecture where log events are sent to the Elastic Stack. The event formatter reduces the risk of two services logging properties with identical names but with different types, which the Elastic Stack doesn't support.

build/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if ($env:APPVEYOR_REPO_TAG -eq "true")
6868

6969
foreach ($package in Get-ChildItem *.nupkg -Exclude *.symbols.nupkg)
7070
{
71-
& dotnet nuget push $package --source https://www.nuget.org/api/v2/package --api-key $NUGET_API_KEY
71+
& dotnet nuget push $package --source "https://www.nuget.org/api/v2/package" --api-key "$env:NUGET_API_KEY"
7272
}
7373

7474
Pop-Location

src/Serilog.Sinks.Http/Serilog.Sinks.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>4.2.1</VersionPrefix>
4+
<VersionPrefix>4.3.0</VersionPrefix>
55
<AssemblyName>Serilog.Sinks.Http</AssemblyName>
66
<Description>A Serilog sink sending log events over HTTP.</Description>
77
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks>

0 commit comments

Comments
 (0)