Skip to content

Commit 90aac6a

Browse files
chore(main): release OpenFeature.Contrib.Providers.Flipt 0.0.2 (#294)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4d59bc3 commit 90aac6a

File tree

4 files changed

+51
-43
lines changed

4 files changed

+51
-43
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"src/OpenFeature.Contrib.Providers.ConfigCat": "0.1.1",
77
"src/OpenFeature.Contrib.Providers.FeatureManagement": "0.1.0",
88
"src/OpenFeature.Contrib.Providers.Statsig": "0.1.0",
9-
"src/OpenFeature.Contrib.Providers.Flipt": "0.0.1"
9+
"src/OpenFeature.Contrib.Providers.Flipt": "0.0.2"
1010
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.0.2](https://github.com/open-feature/dotnet-sdk-contrib/compare/OpenFeature.Contrib.Providers.Flipt-v0.0.1...OpenFeature.Contrib.Providers.Flipt-v0.0.2) (2024-10-17)
4+
5+
6+
### ✨ New Features
7+
8+
* Introduce flipt provider for dotnet ([#293](https://github.com/open-feature/dotnet-sdk-contrib/issues/293)) ([4d59bc3](https://github.com/open-feature/dotnet-sdk-contrib/commit/4d59bc35bd4c65c9989e8c980668d85242240eec))
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<PackageId>OpenFeature.Contrib.Providers.Flipt</PackageId>
5-
<VersionNumber>0.1.0</VersionNumber> <!--x-release-please-version -->
6-
<VersionPrefix>$(VersionNumber)</VersionPrefix>
7-
<AssemblyVersion>$(VersionNumber)</AssemblyVersion>
8-
<FileVersion>$(VersionNumber)</FileVersion>
9-
<Description>Flipt provider for .NET</Description>
10-
<Authors>Jean Andrei de la Cruz Austria</Authors>
11-
</PropertyGroup>
12-
13-
<ItemGroup>
14-
<!-- make the internal methods visble to our test project -->
15-
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
16-
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
17-
</AssemblyAttribute>
18-
</ItemGroup>
19-
20-
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0'">
21-
<PackageReference Include="System.Net.Http" Version="4.3.4"/>
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<PackageReference Include="NSwag.MSBuild" Version="14.1.0">
26-
<PrivateAssets>all</PrivateAssets>
27-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28-
</PackageReference>
29-
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0"/>
30-
<Compile Include="$(ProjectDir)obj/$(ConfigurationName)/$(TargetFramework)/Flipt.Rest.Client.cs"/>
31-
<PackageReference Include="System.Text.Json" Version="8.0.5"/>
32-
</ItemGroup>
33-
34-
<PropertyGroup>
35-
<LangVersion>latest</LangVersion>
36-
</PropertyGroup>
37-
38-
<Target Name="NSwag" BeforeTargets="BeforeBuild">
39-
<Exec Command="$(NSwagExe_Net80) openapi2csclient /className:FliptRestClient /namespace:Flipt.Rest /input:&quot;openapi.yaml&quot; /output:&quot;$(ProjectDir)obj/$(ConfigurationName)/$(TargetFramework)/Flipt.Rest.Client.cs&quot; /GenerateExceptionClasses:true /OperationGenerationMode:SingleClientFromPathSegments /JsonLibrary:SystemTextJson /GenerateOptionalParameters:true /GenerateDefaultValues:true /GenerateResponseClasses:true /GenerateClientInterfaces:true /GenerateClientClasses:true /GenerateDtoTypes:true /ExceptionClass:FliptRestException /GenerateNativeRecords:true /UseBaseUrl:false /GenerateBaseUrlProperty:false"/>
40-
</Target>
41-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>OpenFeature.Contrib.Providers.Flipt</PackageId>
5+
<VersionNumber>0.0.2</VersionNumber> <!--x-release-please-version -->
6+
<VersionPrefix>$(VersionNumber)</VersionPrefix>
7+
<AssemblyVersion>$(VersionNumber)</AssemblyVersion>
8+
<FileVersion>$(VersionNumber)</FileVersion>
9+
<Description>Flipt provider for .NET</Description>
10+
<Authors>Jean Andrei de la Cruz Austria</Authors>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<!-- make the internal methods visble to our test project -->
15+
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
16+
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
17+
</AssemblyAttribute>
18+
</ItemGroup>
19+
20+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0'">
21+
<PackageReference Include="System.Net.Http" Version="4.3.4"/>
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<PackageReference Include="NSwag.MSBuild" Version="14.1.0">
26+
<PrivateAssets>all</PrivateAssets>
27+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28+
</PackageReference>
29+
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0"/>
30+
<Compile Include="$(ProjectDir)obj/$(ConfigurationName)/$(TargetFramework)/Flipt.Rest.Client.cs"/>
31+
<PackageReference Include="System.Text.Json" Version="8.0.5"/>
32+
</ItemGroup>
33+
34+
<PropertyGroup>
35+
<LangVersion>latest</LangVersion>
36+
</PropertyGroup>
37+
38+
<Target Name="NSwag" BeforeTargets="BeforeBuild">
39+
<Exec Command="$(NSwagExe_Net80) openapi2csclient /className:FliptRestClient /namespace:Flipt.Rest /input:&quot;openapi.yaml&quot; /output:&quot;$(ProjectDir)obj/$(ConfigurationName)/$(TargetFramework)/Flipt.Rest.Client.cs&quot; /GenerateExceptionClasses:true /OperationGenerationMode:SingleClientFromPathSegments /JsonLibrary:SystemTextJson /GenerateOptionalParameters:true /GenerateDefaultValues:true /GenerateResponseClasses:true /GenerateClientInterfaces:true /GenerateClientClasses:true /GenerateDtoTypes:true /ExceptionClass:FliptRestException /GenerateNativeRecords:true /UseBaseUrl:false /GenerateBaseUrlProperty:false"/>
40+
</Target>
41+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.0.2

0 commit comments

Comments
 (0)