Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
prepare 5.2.2 release (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-darkly authored Aug 2, 2018
1 parent cdd95a6 commit 6267726
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the LaunchDarkly .NET SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [5.2.2] - 2018-08-02
- In streaming mode, if the stream connection fails, there should be an increasing backoff interval before each reconnect attempt. Previously, it would log a message about waiting some number of milliseconds, but then not actually wait.
- The required package `LaunchDarkly.EventSource` no longer has `PackageReference`s to System assemblies.

## [5.2.1] - 2018-08-01
### Fixed:
- The internal classes representing feature flag and segment data were not JSON-serializable. This did not affect the SDK itself, but prevented any `IFeatureStore` implementation based on Json.Net serialization from working.
Expand Down
4 changes: 2 additions & 2 deletions src/LaunchDarkly.Client/LaunchDarkly.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>5.2.1</Version>
<Version>5.2.2</Version>
<TargetFrameworks>netstandard1.4;netstandard1.6;netstandard2.0;net45</TargetFrameworks>
<PackageLicenseUrl>https://raw.githubusercontent.com/launchdarkly/.net-client/master/LICENSE</PackageLicenseUrl>
<DebugType>portable</DebugType>
Expand All @@ -15,7 +15,7 @@
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LaunchDarkly.Common.StrongName" Version="1.0.3" />
<PackageReference Include="LaunchDarkly.Common.StrongName" Version="1.0.4" />
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" Condition="'$(TargetFramework)' != 'net45'" />
<PackageReference Include="Newtonsoft.Json" Version="6.0.1" Condition="'$(TargetFramework)' == 'net45'" />
Expand Down
2 changes: 1 addition & 1 deletion test/LaunchDarkly.Tests/LaunchDarkly.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="LaunchDarkly.Common.StrongName" Version="1.0.3" />
<PackageReference Include="LaunchDarkly.Common.StrongName" Version="1.0.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Moq" Version="4.8.1" />
<PackageReference Include="WireMock.Net" Version="1.0.3.8" />
Expand Down

0 comments on commit 6267726

Please sign in to comment.