Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/strong-turtles-think.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @human-protocol/core

## 7.1.0

### Minor Changes

- 3818511: chore: dependencies bump

## 7.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@human-protocol/core",
"description": "Human Protocol Core Smart Contracts",
"version": "7.0.0",
"version": "7.1.0",
"files": [
"contracts/**/*.sol",
"abis/**/*.json",
Expand Down
7 changes: 7 additions & 0 deletions packages/libs/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @human-protocol/logger

## 1.3.1

### Patch Changes

- 3818511: chore: dependencies bump
2 changes: 1 addition & 1 deletion packages/libs/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@human-protocol/logger",
"version": "1.3.0",
"version": "1.3.1",
"description": "Unified logging package for HUMAN Protocol",
"type": "commonjs",
"main": "dist/index.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/sdk/python/human-protocol-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @human-protocol/python-sdk

## 7.3.1

### Patch Changes

- Updated dependencies [3818511]
- @human-protocol/core@7.1.0

## 7.3.0

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ def get_cancellation_refund_by_escrow_query():
}}
}}
{cancellation_refund_fragment}
""".format(cancellation_refund_fragment=cancellation_refund_fragment)
""".format(
cancellation_refund_fragment=cancellation_refund_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def get_escrow_query():
}}
}}
{escrow_fragment}
""".format(escrow_fragment=escrow_fragment)
""".format(
escrow_fragment=escrow_fragment
)


def get_status_query(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
}}
}}
{reward_added_event_fragment}
""".format(reward_added_event_fragment=reward_added_event_fragment)
""".format(
reward_added_event_fragment=reward_added_event_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,6 @@ def get_transaction_query() -> str:
}}
}}
{transaction_fragment}
""".format(transaction_fragment=transaction_fragment)
""".format(
transaction_fragment=transaction_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ def get_worker_query() -> str:
}}
}}
{worker_fragment}
""".format(worker_fragment=worker_fragment)
""".format(
worker_fragment=worker_fragment
)


def get_workers_query(filter: WorkerFilter) -> str:
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/python/human-protocol-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@human-protocol/python-sdk",
"version": "7.3.0",
"version": "7.3.1",
"private": true,
"description": "Stub package to integrate the Python SDK with Changesets (dev-only).",
"license": "MIT",
Expand Down
11 changes: 11 additions & 0 deletions packages/sdk/typescript/human-protocol-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @human-protocol/sdk

## 7.4.0

### Minor Changes

- 3818511: chore: dependencies bump

### Patch Changes

- Updated dependencies [3818511]
- @human-protocol/core@7.1.0

## 7.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/typescript/human-protocol-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@human-protocol/sdk",
"description": "Human Protocol SDK",
"version": "7.3.0",
"version": "7.4.0",
"files": [
"src",
"dist"
Expand Down
Loading