Skip to content

Commit 85bcbfa

Browse files
authored
release: v0.4.0 (#65)
## Description ``` - chore!: remove excluded users from ListUsers response BREAKING CHANGE: This version removes the `ExcludedUsers` field from the `ListUsersResponse` and `ClientListUsersResponse` classes, for more details see the [associated API change](openfga/api#171). ``` ## References ## Review Checklist - [x] I have clicked on ["allow edits by maintainers"](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork). - [ ] I have added documentation for new/changed functionality in this PR or in a PR to [openfga.dev](https://github.com/openfga/openfga.dev) [Provide a link to any relevant PRs in the references section above] - [x] The correct base branch is being used, if not `main` - [ ] I have added tests to validate that the change in functionality is working as expected
2 parents 8ffebc0 + c0ee294 commit 85bcbfa

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## v0.4.0
4+
5+
### [0.4.0](https://github.com/openfga/dotnet-sdk/compare/v0.3.2...v0.4.0) (2024-06-14)
6+
- chore!: remove excluded users from ListUsers response
7+
8+
BREAKING CHANGE:
9+
10+
This version removes the `ExcludedUsers` field from the `ListUsersResponse` and `ClientListUsersResponse` classes,
11+
for more details see the [associated API change](https://github.com/openfga/api/pull/171).
12+
313
## v0.3.2
414

515
### [0.3.2](https://github.com/openfga/dotnet-sdk/compare/v0.3.1...v0.3.2) (2024-04-30)

src/OpenFga.Sdk/Configuration/Configuration.cs

+2-2
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.3.2";
59+
public const string Version = "0.4.0";
6060

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

6363
#endregion Constants
6464

src/OpenFga.Sdk/OpenFga.Sdk.csproj

+1-1
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.3.2</Version>
15+
<Version>0.4.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)