Skip to content

Commit

Permalink
feat: Support .Net server SDK 8.0+ (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion authored Oct 16, 2023
1 parent a02571b commit f78a7eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .ldrelease/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ publications:

branches:
- name: main
description: 5.x - for SDK 8+
- name: 4.x
description: 4.x - for SDK 7+
- name: 3.x
description: 3.x - for SDK 6+
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This library provides a Redis-backed persistence mechanism (data store) for the

For more information, see also: [Using Redis as a persistent feature store](https://docs.launchdarkly.com/sdk/features/storing-data/redis#net-server-side).

Version 4.0.0 and above of this library works with version 7.0.0 and above of the LaunchDarkly .NET SDK. For earlier versions of the SDK, see the changelog for which version of this library to use.
Version 5.0.0 and above of this library works with version 8.0.0 and above of the LaunchDarkly .NET SDK. For earlier versions of the SDK, see the changelog for which version of this library to use.

It has a dependency on StackExchange.Redis version 2.0.513. If you are using a higher version of StackExchange.Redis, you should install it explicitly as a dependency in your application to override this minimum version.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="LaunchDarkly.ServerSdk" Version="7.0.0" />
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0.0, 9.0.0)" />
<PackageReference Include="StackExchange.Redis" Version="[2.0.513,]" />
</ItemGroup>

Expand Down

0 comments on commit f78a7eb

Please sign in to comment.