Skip to content

Commit

Permalink
chore(main): release 0.6.0 (#25)
Browse files Browse the repository at this point in the history
🤖 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>
  • Loading branch information
github-actions[bot] committed Mar 1, 2024
1 parent 3e61faa commit cfac437
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 51 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.0"
".": "0.6.0"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

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).

## [0.6.0](https://github.com/launchdarkly/openfeature-dotnet-server/compare/0.5.0...0.6.0) (2024-02-23)


### Features

* 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))
* 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))
* 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))

## [0.5.0] - 2023-02-14
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.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!--x-release-please-start-version-->
<Version>0.5.0</Version>
<!--x-release-please-end-->
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
single framework that we are testing; this allows us to test with older SDK
versions that would error out if they saw any newer target frameworks listed
here, even if we weren't running those. -->
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks>
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>

<DebugType>portable</DebugType>
<AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId>
<RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace>
<LangVersion>7.3</LangVersion>
<Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Company>LaunchDarkly</Company>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Copyright>Copyright 2022 LaunchDarkly</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl>
<RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<!-- fail if XML comments are missing or invalid -->
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)'!='Release'">
<InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" />
<PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" />
</ItemGroup>

<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!--x-release-please-start-version-->
<Version>0.6.0</Version>
<!--x-release-please-end-->
<!-- The BUILDFRAMEWORKS variable allows us to override the target frameworks with a
single framework that we are testing; this allows us to test with older SDK
versions that would error out if they saw any newer target frameworks listed
here, even if we weren't running those. -->
<BuildFrameworks Condition="'$(BUILDFRAMEWORKS)' == ''">netstandard2.0;net471;net6.0</BuildFrameworks>
<TargetFrameworks>$(BUILDFRAMEWORKS)</TargetFrameworks>

<DebugType>portable</DebugType>
<AssemblyName>LaunchDarkly.OpenFeature.ServerProvider</AssemblyName>
<OutputType>Library</OutputType>
<PackageId>LaunchDarkly.OpenFeature.ServerProvider</PackageId>
<RootNamespace>LaunchDarkly.OpenFeature.ServerProvider</RootNamespace>
<LangVersion>7.3</LangVersion>
<Description>LaunchDarkly OpenFeature Provider for the Server-Side SDK for .NET</Description>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Company>LaunchDarkly</Company>
<Authors>LaunchDarkly</Authors>
<Owners>LaunchDarkly</Owners>
<Copyright>Copyright 2022 LaunchDarkly</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/launchdarkly/openfeature-dotnet-server</PackageProjectUrl>
<RepositoryUrl>https://github.com/launchdarkly/openfeature-dotnet-server</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<!-- fail if XML comments are missing or invalid -->
<WarningsAsErrors>1570,1571,1572,1573,1574,1580,1581,1584,1591,1710,1711,1712</WarningsAsErrors>
</PropertyGroup>

<ItemGroup Condition="'$(Configuration)'!='Release'">
<InternalsVisibleTo Include="LaunchDarkly.OpenFeature.ServerProvider.Tests" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="LaunchDarkly.ServerSdk" Version="[8.0,9.0)" />
<PackageReference Include="OpenFeature" Version="[1.4.0, 2.0.0)" />
</ItemGroup>

<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\LaunchDarkly.OpenFeature.ServerProvider.xml</DocumentationFile>
</PropertyGroup>
</Project>

0 comments on commit cfac437

Please sign in to comment.