Skip to content

Commit dcb80d5

Browse files
authored
chore: increase version (#115)
1 parent 81ddfb8 commit dcb80d5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fds.sdk.utils"
3-
version = "2.0.1"
3+
version = "2.1.0"
44
description = "Utilities for interacting with FactSet APIs."
55
authors = ["FactSet Research Systems"]
66
license = "Apache-2.0"

src/fds/sdk/utils/authentication/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class CONSTS:
2828
# default values
2929
FACTSET_WELL_KNOWN_URI = "https://auth.factset.com/.well-known/openid-configuration"
3030

31-
USER_AGENT = f"fds-sdk/python/utils/2.0.1 ({platform.system()}; Python {platform.python_version()})"
31+
USER_AGENT = f"fds-sdk/python/utils/2.1.0 ({platform.system()}; Python {platform.python_version()})"
3232

3333

3434
CONSTS = CONSTS()

tests/fds/sdk/utils/authentication/test_confidential.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def json(self):
203203
url="https://auth.factset.com/.well-known/openid-configuration",
204204
proxies={"http": "http://my:pass@test.test.test", "https": "http://my:pass@test.test.test"},
205205
verify=False,
206-
headers={"User-Agent": f"fds-sdk/python/utils/2.0.1 ({platform.system()}; Python {platform.python_version()})"},
206+
headers={"User-Agent": f"fds-sdk/python/utils/2.1.0 ({platform.system()}; Python {platform.python_version()})"},
207207
)
208208

209209

@@ -233,7 +233,7 @@ def json(self):
233233
url=auth_test,
234234
proxies=None,
235235
verify=True,
236-
headers={"User-Agent": f"fds-sdk/python/utils/2.0.1 ({platform.system()}; Python {platform.python_version()})"},
236+
headers={"User-Agent": f"fds-sdk/python/utils/2.1.0 ({platform.system()}; Python {platform.python_version()})"},
237237
)
238238
assert client
239239

@@ -378,7 +378,7 @@ def test_get_access_token_fetch(client, mocker):
378378
headers={
379379
"Accept": "application/json",
380380
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
381-
"User-Agent": f"fds-sdk/python/utils/2.0.1 ({platform.system()}; Python {platform.python_version()})",
381+
"User-Agent": f"fds-sdk/python/utils/2.1.0 ({platform.system()}; Python {platform.python_version()})",
382382
},
383383
)
384384

0 commit comments

Comments
 (0)