Skip to content

Commit 02bbc98

Browse files
authored
release: v0.5.0 (#73)
## Release v0.5.0 - feat: support consistency parameter (#70)
2 parents f020bc6 + 8574469 commit 02bbc98

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v0.5.0
4+
5+
### [0.5.0](https://github.com/openfga/dotnet-sdk/compare/v0.4.0...v0.5.0) (2024-08-28)
6+
7+
- feat: support consistency parameter (#70)
8+
Note: To use this feature, you need to be running OpenFGA v1.5.7+ with the experimental flag `enable-consistency-params` enabled.
9+
See the [v1.5.7 release notes](https://github.com/openfga/openfga/releases/tag/v1.5.7) for details.
10+
311
## v0.4.0
412

513
### [0.4.0](https://github.com/openfga/dotnet-sdk/compare/v0.3.2...v0.4.0) (2024-06-14)

src/OpenFga.Sdk/Configuration/Configuration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ public void IsValid() {
5656
/// Version of the package.
5757
/// </summary>
5858
/// <value>Version of the package.</value>
59-
public const string Version = "0.4.0";
59+
public const string Version = "0.5.0";
6060

61-
private const string DefaultUserAgent = "openfga-sdk dotnet/0.4.0";
61+
private const string DefaultUserAgent = "openfga-sdk dotnet/0.5.0";
6262

6363
#endregion Constants
6464

src/OpenFga.Sdk/OpenFga.Sdk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>.NET SDK for OpenFGA</Description>
1313
<Copyright>OpenFGA</Copyright>
1414
<RootNamespace>OpenFga.Sdk</RootNamespace>
15-
<Version>0.4.0</Version>
15+
<Version>0.5.0</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\OpenFga.Sdk.xml</DocumentationFile>
1717
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1818
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)