Skip to content

Commit 664b0b9

Browse files
authored
release: v0.4.3 (#96)
2 parents 32748b1 + 4320549 commit 664b0b9

14 files changed

Lines changed: 21 additions & 15 deletions

CHANGELOG.md

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

3+
## v0.4.3
4+
5+
### [0.4.3](https://github.com/openfga/python-sdk/compare/v0.4.2...v0.4.3) (2024-06-07)
6+
7+
- feat: support for list users
8+
39
## v0.4.2
410

511
### [0.4.2](https://github.com/openfga/python-sdk/compare/v0.4.1...v0.4.2) (2024-04-04)

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.2
1+
0.4.3

example/example1/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ attrs >= 23.1.0
44
frozenlist >= 1.4.1
55
idna >= 3.6
66
multidict >= 6.0.4
7-
openfga-sdk >= 0.4.2
7+
openfga-sdk >= 0.4.3
88
python-dateutil >= 2.8.2
99
urllib3 >= 2.1.0
1010
yarl >= 1.9.4

openfga_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
NOTE: This file was auto generated by OpenAPI Generator (https://openapi-generator.tech). DO NOT EDIT.
1111
"""
1212

13-
__version__ = "0.4.2"
13+
__version__ = "0.4.3"
1414

1515
from openfga_sdk.api.open_fga_api import OpenFgaApi
1616
from openfga_sdk.api_client import ApiClient

openfga_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
ServiceException,
3434
)
3535

36-
DEFAULT_USER_AGENT = "openfga-sdk python/0.4.2"
36+
DEFAULT_USER_AGENT = "openfga-sdk python/0.4.3"
3737

3838

3939
def random_time(loop_count, min_wait_in_ms):

openfga_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def to_debug_report(self):
469469
"OS: {env}\n"
470470
"Python Version: {pyversion}\n"
471471
"Version of the API: 1.x\n"
472-
"SDK Package Version: 0.4.2".format(env=sys.platform, pyversion=sys.version)
472+
"SDK Package Version: 0.4.3".format(env=sys.platform, pyversion=sys.version)
473473
)
474474

475475
def get_host_settings(self):

openfga_sdk/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def _obtain_token(self, client):
8080
{
8181
"Accept": "application/json",
8282
"Content-Type": "application/x-www-form-urlencoded",
83-
"User-Agent": "openfga-sdk (python) 0.4.2",
83+
"User-Agent": "openfga-sdk (python) 0.4.3",
8484
}
8585
)
8686

openfga_sdk/sync/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
)
3434
from openfga_sdk.sync import oauth2, rest
3535

36-
DEFAULT_USER_AGENT = "openfga-sdk python/0.4.2"
36+
DEFAULT_USER_AGENT = "openfga-sdk python/0.4.3"
3737

3838

3939
def random_time(loop_count, min_wait_in_ms):

openfga_sdk/sync/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def _obtain_token(self, client):
8080
{
8181
"Accept": "application/json",
8282
"Content-Type": "application/x-www-form-urlencoded",
83-
"User-Agent": "openfga-sdk (python) 0.4.2",
83+
"User-Agent": "openfga-sdk (python) 0.4.3",
8484
}
8585
)
8686

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import setuptools
1717

1818
NAME = "openfga-sdk"
19-
VERSION = "0.4.2"
19+
VERSION = "0.4.3"
2020
REQUIRES = []
2121

2222

0 commit comments

Comments
 (0)