Skip to content

Commit

Permalink
release(v0.2.5): fix for reading all tuples
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamzeh committed Dec 1, 2023
1 parent ea615e8 commit 73dcae2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.2.5

### [0.2.5](https://github.com/openfga/dotnet-sdk/compare/v0.2.4...v0.2.5) (2023-12-01)
- fix(client): read with no filter (read all tuples)
- chore(deps): update dependencies

## v0.2.4

### [0.2.4](https://github.com/openfga/dotnet-sdk/compare/v0.2.3...v0.2.4) (2023-05-01)
Expand Down
4 changes: 2 additions & 2 deletions src/OpenFga.Sdk/Configuration/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public void IsValid() {
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "0.2.4";
public const string Version = "0.2.5";

private const string DefaultUserAgent = "openfga-sdk dotnet/0.2.4";
private const string DefaultUserAgent = "openfga-sdk dotnet/0.2.5";

#endregion Constants

Expand Down
2 changes: 1 addition & 1 deletion src/OpenFga.Sdk/OpenFga.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Description>.NET SDK for OpenFGA</Description>
<Copyright>OpenFGA</Copyright>
<RootNamespace>OpenFga.Sdk</RootNamespace>
<Version>0.2.4</Version>
<Version>0.2.5</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\OpenFga.Sdk.xml</DocumentationFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down

0 comments on commit 73dcae2

Please sign in to comment.