Skip to content

Commit 0394e2a

Browse files
committed
bump changeset
1 parent 354029e commit 0394e2a

File tree

11 files changed

+29
-30
lines changed

11 files changed

+29
-30
lines changed

.changeset/brown-yaks-flow.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/warm-pillows-crash.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/sdk/python/human-protocol-sdk/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @human-protocol/python-sdk
22

3+
## 7.1.0
4+
5+
### Minor Changes
6+
7+
- 7da7b12: Extended SDK to return block and tx hash for "getStatusEvents".
8+
Fixed "status" field in return value to be consistent in SDKs.
9+
10+
### Patch Changes
11+
12+
- a49202f: Delete references to totalHMTAmountReceived that was removed from subgraph
13+
314
## 7.0.0
415

516
### Major Changes

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/cancel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,4 @@ def get_cancellation_refund_by_escrow_query():
7070
}}
7171
}}
7272
{cancellation_refund_fragment}
73-
""".format(
74-
cancellation_refund_fragment=cancellation_refund_fragment
75-
)
73+
""".format(cancellation_refund_fragment=cancellation_refund_fragment)

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/escrow.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,7 @@ def get_escrow_query():
9797
}}
9898
}}
9999
{escrow_fragment}
100-
""".format(
101-
escrow_fragment=escrow_fragment
102-
)
100+
""".format(escrow_fragment=escrow_fragment)
103101

104102

105103
def get_status_query(

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/reward.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@
1414
}}
1515
}}
1616
{reward_added_event_fragment}
17-
""".format(
18-
reward_added_event_fragment=reward_added_event_fragment
19-
)
17+
""".format(reward_added_event_fragment=reward_added_event_fragment)

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/transaction.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,4 @@ def get_transaction_query() -> str:
103103
}}
104104
}}
105105
{transaction_fragment}
106-
""".format(
107-
transaction_fragment=transaction_fragment
108-
)
106+
""".format(transaction_fragment=transaction_fragment)

packages/sdk/python/human-protocol-sdk/human_protocol_sdk/gql/worker.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ def get_worker_query() -> str:
1717
}}
1818
}}
1919
{worker_fragment}
20-
""".format(
21-
worker_fragment=worker_fragment
22-
)
20+
""".format(worker_fragment=worker_fragment)
2321

2422

2523
def get_workers_query(filter: WorkerFilter) -> str:

packages/sdk/python/human-protocol-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@human-protocol/python-sdk",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"private": true,
55
"description": "Stub package to integrate the Python SDK with Changesets (dev-only).",
66
"license": "MIT",

packages/sdk/typescript/human-protocol-sdk/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @human-protocol/sdk
22

3+
## 7.1.0
4+
5+
### Minor Changes
6+
7+
- 7da7b12: Extended SDK to return block and tx hash for "getStatusEvents".
8+
Fixed "status" field in return value to be consistent in SDKs.
9+
10+
### Patch Changes
11+
12+
- a49202f: Delete references to totalHMTAmountReceived that was removed from subgraph
13+
314
## 7.0.0
415

516
### Major Changes

0 commit comments

Comments
 (0)