Skip to content

Commit b46cd17

Browse files
authored
Chore/bump client spec (#339)
* chore: bump client spec to 5.1.9
1 parent 3d36c6d commit b46cd17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UnleashClient/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
REQUEST_TIMEOUT = 30
77
REQUEST_RETRIES = 3
88
METRIC_LAST_SENT_TIME = "mlst"
9-
CLIENT_SPEC_VERSION = "5.1.0"
9+
CLIENT_SPEC_VERSION = "5.1.9"
1010

1111
# =Unleash=
1212
APPLICATION_HEADERS = {

tests/specification_tests/test_client_specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
def load_spec(spec):
15-
with open(path.join(CLIENT_SPEC_PATH, spec)) as _f:
15+
with open(path.join(CLIENT_SPEC_PATH, spec), encoding="utf-8") as _f:
1616
data = json.load(_f)
1717
return (
1818
data["name"],

0 commit comments

Comments
 (0)