Skip to content

Commit cfac437

Browse files
chore(main): release 0.6.0 (#25)
🤖 I have created a release *beep* *boop* --- ## [0.6.0](0.5.0...0.6.0) (2024-02-23) ### Features * Add support for configuration changed event. ([#27](#27)) ([3e61faa](3e61faa)) * Add support for initialization, shutdown, and provider status events. ([#26](#26)) ([fe8db98](fe8db98)) * Support the LaunchDarkly for .NET Server-Side 8.x SDK. ([#22](#22)) ([da4a264](da4a264)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3e61faa commit cfac437

File tree

3 files changed

+60
-51
lines changed

3 files changed

+60
-51
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.6.0"
33
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to the LaunchDarkly OpenFeature provider for the Server-Side SDK for .NET will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [0.6.0](https://github.com/launchdarkly/openfeature-dotnet-server/compare/0.5.0...0.6.0) (2024-02-23)
6+
7+
8+
### Features
9+
10+
* Add support for configuration changed event. ([#27](https://github.com/launchdarkly/openfeature-dotnet-server/issues/27)) ([3e61faa](https://github.com/launchdarkly/openfeature-dotnet-server/commit/3e61faa8bc0d4f270e88853264dc3dd644c242e2))
11+
* Add support for initialization, shutdown, and provider status events. ([#26](https://github.com/launchdarkly/openfeature-dotnet-server/issues/26)) ([fe8db98](https://github.com/launchdarkly/openfeature-dotnet-server/commit/fe8db9883b2f8ad84dc71c9f8b24e3c61abc9c6d))
12+
* Support the LaunchDarkly for .NET Server-Side 8.x SDK. ([#22](https://github.com/launchdarkly/openfeature-dotnet-server/issues/22)) ([da4a264](https://github.com/launchdarkly/openfeature-dotnet-server/commit/da4a264399825dc4b7ac282b781cc7a3a82fed7c))
13+
514
## [0.5.0] - 2023-02-14
615
This version adds support for contexts. For a detailed explanation of contexts please refer to the [LaunchDarkly.ServerSdk 7.0.0 release notes.](https://github.com/launchdarkly/dotnet-server-sdk/releases/tag/7.0.0) The README contains a number of examples demonstrating how to use contexts.
716

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,50 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<!--x-release-please-start-version-->
5-
<Version>0.5.0</Version>
6-
<!--x-release-please-end-->
7-
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
8-
single framework that we are testing; this allows us to test with older SDK
9-
versions that would error out if they saw any newer target frameworks listed
10-
here, even if we weren't running those. -->
11-
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks>
12-
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
13-
14-
<DebugType>portable</DebugType>
15-
<AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName>
16-
<OutputType>Library</OutputType>
17-
<PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId>
18-
<RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace>
19-
<LangVersion>7.3</LangVersion>
20-
<Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description>
21-
<Authors>LaunchDarkly</Authors>
22-
<Owners>LaunchDarkly</Owners>
23-
<Company>LaunchDarkly</Company>
24-
<Authors>LaunchDarkly</Authors>
25-
<Owners>LaunchDarkly</Owners>
26-
<Copyright>Copyright 2022 LaunchDarkly</Copyright>
27-
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
28-
<PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl>
29-
<RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl>
30-
<RepositoryBranch>main</RepositoryBranch>
31-
<IncludeSymbols>true</IncludeSymbols>
32-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
33-
34-
<!-- fail if XML comments are missing or invalid -->
35-
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
36-
</PropertyGroup>
37-
38-
<ItemGroup Condition="'$(Configuration)'!='Release'">
39-
<InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" />
40-
</ItemGroup>
41-
42-
<ItemGroup>
43-
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" />
44-
<PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" />
45-
</ItemGroup>
46-
47-
<PropertyGroup>
48-
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile>
49-
</PropertyGroup>
50-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<!--x-release-please-start-version-->
5+
<Version>0.6.0</Version>
6+
<!--x-release-please-end-->
7+
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
8+
single framework that we are testing; this allows us to test with older SDK
9+
versions that would error out if they saw any newer target frameworks listed
10+
here, even if we weren't running those. -->
11+
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks>
12+
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>
13+
14+
<DebugType>portable</DebugType>
15+
<AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName>
16+
<OutputType>Library</OutputType>
17+
<PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId>
18+
<RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace>
19+
<LangVersion>7.3</LangVersion>
20+
<Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description>
21+
<Authors>LaunchDarkly</Authors>
22+
<Owners>LaunchDarkly</Owners>
23+
<Company>LaunchDarkly</Company>
24+
<Authors>LaunchDarkly</Authors>
25+
<Owners>LaunchDarkly</Owners>
26+
<Copyright>Copyright 2022 LaunchDarkly</Copyright>
27+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
28+
<PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl>
29+
<RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl>
30+
<RepositoryBranch>main</RepositoryBranch>
31+
<IncludeSymbols>true</IncludeSymbols>
32+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
33+
34+
<!-- fail if XML comments are missing or invalid -->
35+
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
36+
</PropertyGroup>
37+
38+
<ItemGroup Condition="'$(Configuration)'!='Release'">
39+
<InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" />
40+
</ItemGroup>
41+
42+
<ItemGroup>
43+
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" />
44+
<PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" />
45+
</ItemGroup>
46+
47+
<PropertyGroup>
48+
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile>
49+
</PropertyGroup>
50+
</Project>

0 commit comments

Comments
 (0)