Skip to content

Commit

Permalink
prepare release 0.3.6 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
gh123man authored Feb 11, 2022
1 parent 089352c commit a740926
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.3.6

* Remove unused UTF8 property #66. Thanks @jnyrup
* Support Datadog V2 intake API
* .NET 5 and .NET 6 support #68. Thanks @AndrewMD5
* Remove remaining traces of net6.0 #72. Thanks @jnyrup

## 0.3.5

* Handle TCP disconnection leading to missing logs #64. Thanks @lokalan.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.0;netstandard1.3;net45;net461;net472;net5.0</TargetFrameworks>
<AssemblyName>Serilog.Sinks.Datadog.Logs</AssemblyName>
<PackageId>Serilog.Sinks.Datadog.Logs</PackageId>
<PackageVersion>0.3.5</PackageVersion>
<PackageVersion>0.3.6</PackageVersion>
<Authors>Datadog</Authors>
<Title>Serilog Sink Datadog Logs</Title>
<Description>Serilog Sink that sends log events to Datadog https://www.datadoghq.com/</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Serilog.Sinks.Datadog.Logs
public class DatadogHttpClient : IDatadogClient
{

private const string _version = "0.3.5";
private const string _version = "0.3.6";
private const string _content = "application/json";
private const int _maxSize = 2 * 1024 * 1024 - 51; // Need to reserve space for at most 49 "," and "[" + "]"
private const int _maxMessageSize = 256 * 1024;
Expand Down

0 comments on commit a740926

Please sign in to comment.