Skip to content

Commit d7ed1f4

Browse files
chore: release main (#38)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5ed9336 commit d7ed1f4

File tree

4 files changed

+45
-37
lines changed

4 files changed

+45
-37
lines changed

Diff for: .release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"src/OpenFeature.Contrib.Hooks.Otel": "0.1.0",
3-
"src/OpenFeature.Contrib.Providers.Flagd": "0.1.0",
3+
"src/OpenFeature.Contrib.Providers.Flagd": "0.1.1",
44
"src/OpenFeature.Contrib.Providers.GOFeatureFlag": "0.1.2"
55
}

Diff for: src/OpenFeature.Contrib.Providers.Flagd/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.1.1](https://github.com/open-feature/dotnet-sdk-contrib/compare/OpenFeature.Contrib.Providers.Flagd-v0.1.0...OpenFeature.Contrib.Providers.Flagd-v0.1.1) (2023-02-13)
4+
5+
6+
### Features
7+
8+
* flagd provider basic functionality ([#31](https://github.com/open-feature/dotnet-sdk-contrib/issues/31)) ([5ed9336](https://github.com/open-feature/dotnet-sdk-contrib/commit/5ed9336132a12c058f46beef5c861233270e975e))
9+
* implement the flagd provider ([5ed9336](https://github.com/open-feature/dotnet-sdk-contrib/commit/5ed9336132a12c058f46beef5c861233270e975e))
10+
311
## [0.1.0](https://github.com/open-feature/dotnet-sdk-contrib/compare/OpenFeature.Contrib.Providers.Flagd-v0.0.2...OpenFeature.Contrib.Providers.Flagd-v0.1.0) (2022-10-16)
412

513

Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId>
5-
<VersionNumber>0.1.0</VersionNumber> <!--x-release-please-version -->
6-
<Version>$(VersionNumber)</Version>
7-
<AssemblyVersion>$(VersionNumber)</AssemblyVersion>
8-
<FileVersion>$(VersionNumber)</FileVersion>
9-
<Description>flagd provider for .NET</Description>
10-
<PackageProjectUrl>https://openfeature.dev</PackageProjectUrl>
11-
<RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl>
12-
<Authors>Todd Baert</Authors>
13-
</PropertyGroup>
14-
15-
<ItemGroup>
16-
<!-- make the internal methods visble to our test project -->
17-
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
18-
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
19-
</AssemblyAttribute>
20-
</ItemGroup>
21-
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
22-
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" />
23-
</ItemGroup>
24-
<ItemGroup>
25-
<!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' -->
26-
<!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos -->
27-
<Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" />
28-
<PackageReference Include="Google.Protobuf" Version="3.21.12" />
29-
<PackageReference Include="Grpc.Net.Client" Version="2.51.0" />
30-
<PackageReference Include="Grpc.Tools" Version="2.51.0">
31-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
32-
<PrivateAssets>all</PrivateAssets>
33-
</PackageReference>
34-
</ItemGroup>
35-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageId>OpenFeature.Contrib.Providers.Flagd</PackageId>
5+
<VersionNumber>0.1.1</VersionNumber> <!--x-release-please-version -->
6+
<Version>$(VersionNumber)</Version>
7+
<AssemblyVersion>$(VersionNumber)</AssemblyVersion>
8+
<FileVersion>$(VersionNumber)</FileVersion>
9+
<Description>flagd provider for .NET</Description>
10+
<PackageProjectUrl>https://openfeature.dev</PackageProjectUrl>
11+
<RepositoryUrl>https://github.com/open-feature/dotnet-sdk-contrib</RepositoryUrl>
12+
<Authors>Todd Baert</Authors>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<!-- make the internal methods visble to our test project -->
17+
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
18+
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
19+
</AssemblyAttribute>
20+
</ItemGroup>
21+
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
22+
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="6.0.1" />
23+
</ItemGroup>
24+
<ItemGroup>
25+
<!-- The schema.proto file referenced here will be used to automatically generate the Grpc client when executing 'dotnet build' -->
26+
<!-- The generated files will be placed in ./obj/Debug/netstandard2.0/Protos -->
27+
<Protobuf Include="schemas\protobuf\schema\v1\schema.proto" GrpcServices="Client" />
28+
<PackageReference Include="Google.Protobuf" Version="3.21.12" />
29+
<PackageReference Include="Grpc.Net.Client" Version="2.51.0" />
30+
<PackageReference Include="Grpc.Tools" Version="2.51.0">
31+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
32+
<PrivateAssets>all</PrivateAssets>
33+
</PackageReference>
34+
</ItemGroup>
35+
</Project>

Diff for: src/OpenFeature.Contrib.Providers.Flagd/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.1.1

0 commit comments

Comments
 (0)