Skip to content

Commit

Permalink
release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FantasticFiasco committed Feb 1, 2018
1 parent 50c01a9 commit 2138e44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/) and is followi

## Unreleased

## [4.3.0] - 2018-02-01

### Added

- 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.
Expand Down
2 changes: 1 addition & 1 deletion build/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if ($env:APPVEYOR_REPO_TAG -eq "true")

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

Pop-Location
Expand Down
2 changes: 1 addition & 1 deletion src/Serilog.Sinks.Http/Serilog.Sinks.Http.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>4.2.1</VersionPrefix>
<VersionPrefix>4.3.0</VersionPrefix>
<AssemblyName>Serilog.Sinks.Http</AssemblyName>
<Description>A Serilog sink sending log events over HTTP.</Description>
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks>
Expand Down

0 comments on commit 2138e44

Please sign in to comment.