diff --git a/CHANGELOG.md b/CHANGELOG.md index e886640..e771262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly's EventSource implementation for C# will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [3.3.3] - 2020-11-05 +### Added: +- The package now has a specific target for .NET Standard 2.0, in addition to the previous targets of .NET Standard 1.4 and .NET Framework 4.5. There is no functional difference between the 2.0 and 1.4 builds, but it may be desirable for .NET Core/.NET Standard code to be able to avoid linking to any .NET Standard 1.x assemblies. + ## [3.3.2] - 2019-10-23 ### Fixed: - If a stream connection is restarted, `EventSource` should send a `Last-Event-Id` header if it previously received an event with an `id` field. (Thanks, [fracek](https://github.com/launchdarkly/dotnet-eventsource/pull/53)!) diff --git a/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj b/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj index 084109b..102e1b6 100644 --- a/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj +++ b/src/LaunchDarkly.EventSource/LaunchDarkly.EventSource.csproj @@ -1,7 +1,7 @@  - 3.3.2 + 3.3.3 netstandard1.4;netstandard2.0;net45 https://raw.github.com/LaunchDarkly/dotnet-eventsource/master/LICENSE LaunchDarkly.EventSource