Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge released refs/tags/v0.107.0 into develop #610

Merged
merged 3 commits into from
Apr 3, 2023
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.107.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.103.1...v0.107.0) (2023-04-03)


### Features

* Sign support multisig. ([#593](https://github.com/nervosnetwork/ckb-sdk-js/issues/593)) ([3ad7abd](https://github.com/nervosnetwork/ckb-sdk-js/commit/3ad7abde0b29e65898b4a93976002b1275caac60))
* add rpc of "get_fee_rate_statics" ([#608](https://github.com/ckb-js/ckb-sdk-js/pull/608))





## [0.103.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.102.3...v0.103.1) (2022-05-31)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.103.1"
"version": "0.107.0"
}
11 changes: 11 additions & 0 deletions packages/ckb-sdk-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.107.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.103.1...v0.107.0) (2023-04-03)


### Features

* Sign support multisig. ([#593](https://github.com/nervosnetwork/ckb-sdk-js/issues/593)) ([3ad7abd](https://github.com/nervosnetwork/ckb-sdk-js/commit/3ad7abde0b29e65898b4a93976002b1275caac60))





## [0.103.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.102.3...v0.103.1) (2022-05-31)

**Note:** Version bump only for package @nervosnetwork/ckb-sdk-core
Expand Down
10 changes: 5 additions & 5 deletions packages/ckb-sdk-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nervosnetwork/ckb-sdk-core",
"version": "0.103.1",
"version": "0.107.0",
"description": "JavaScript SDK for Nervos Network CKB Project",
"author": "Nervos <dev@nervos.org>",
"homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme",
Expand Down Expand Up @@ -33,10 +33,10 @@
"url": "https://github.com/nervosnetwork/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-rpc": "0.103.1",
"@nervosnetwork/ckb-sdk-utils": "0.103.1",
"@nervosnetwork/ckb-types": "0.103.1",
"@nervosnetwork/ckb-sdk-rpc": "0.107.0",
"@nervosnetwork/ckb-sdk-utils": "0.107.0",
"@nervosnetwork/ckb-types": "0.107.0",
"tslib": "2.3.1"
},
"gitHead": "51d076e98f34cf15dda4bc5f3e434f1f6de54bb7"
"gitHead": "592c7cb58fd830f8bc07f5f08551811ba0197195"
}
11 changes: 11 additions & 0 deletions packages/ckb-sdk-rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.107.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.103.1...v0.107.0) (2023-04-03)

### Features

* extends hash_type to 'data' | 'type' | 'data1' ([#555](https://github.com/nervosnetwork/ckb-sdk-js/issues/555)) ([30c49e8](https://github.com/nervosnetwork/ckb-sdk-js/commit/30c49e8960a704eb76dd0c5e0d8f370212a84a6d))
* add rpc of "get_fee_rate_statics" ([#608](https://github.com/ckb-js/ckb-sdk-js/pull/608))





## [0.103.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.102.3...v0.103.1) (2022-05-31)

**Note:** Version bump only for package @nervosnetwork/ckb-sdk-rpc
Expand Down
8 changes: 4 additions & 4 deletions packages/ckb-sdk-rpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nervosnetwork/ckb-sdk-rpc",
"version": "0.103.1",
"version": "0.107.0",
"description": "RPC module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <dev@nervos.org>",
"homepage": "https://github.com/nervosnetwork/ckb-sdk-js/packages/ckb-rpc#readme",
Expand Down Expand Up @@ -33,12 +33,12 @@
"url": "https://github.com/nervosnetwork/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-utils": "0.103.1",
"@nervosnetwork/ckb-sdk-utils": "0.107.0",
"axios": "0.21.4",
"tslib": "2.3.1"
},
"devDependencies": {
"@nervosnetwork/ckb-types": "0.103.1"
"@nervosnetwork/ckb-types": "0.107.0"
},
"gitHead": "51d076e98f34cf15dda4bc5f3e434f1f6de54bb7"
"gitHead": "592c7cb58fd830f8bc07f5f08551811ba0197195"
}
8 changes: 8 additions & 0 deletions packages/ckb-sdk-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.107.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.103.1...v0.107.0) (2023-04-03)

**Note:** Version bump only for package @nervosnetwork/ckb-sdk-utils





## [0.103.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.102.3...v0.103.1) (2022-05-31)


Expand Down
6 changes: 3 additions & 3 deletions packages/ckb-sdk-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nervosnetwork/ckb-sdk-utils",
"version": "0.103.1",
"version": "0.107.0",
"description": "Utils module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <dev@nervos.org>",
"homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme",
Expand Down Expand Up @@ -31,7 +31,7 @@
"url": "https://github.com/nervosnetwork/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-types": "0.103.1",
"@nervosnetwork/ckb-types": "0.107.0",
"bech32": "2.0.0",
"elliptic": "6.5.4",
"jsbi": "3.1.3",
Expand All @@ -41,5 +41,5 @@
"@types/bitcoinjs-lib": "5.0.0",
"@types/elliptic": "6.4.12"
},
"gitHead": "51d076e98f34cf15dda4bc5f3e434f1f6de54bb7"
"gitHead": "592c7cb58fd830f8bc07f5f08551811ba0197195"
}
8 changes: 8 additions & 0 deletions packages/ckb-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.107.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.103.1...v0.107.0) (2023-04-03)

**Note:** Version bump only for package @nervosnetwork/ckb-types





## [0.103.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.102.3...v0.103.1) (2022-05-31)

**Note:** Version bump only for package @nervosnetwork/ckb-types
Expand Down
4 changes: 2 additions & 2 deletions packages/ckb-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nervosnetwork/ckb-types",
"version": "0.103.1",
"version": "0.107.0",
"description": "Type module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <dev@nervos.org>",
"homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme",
Expand All @@ -20,5 +20,5 @@
"bugs": {
"url": "https://github.com/nervosnetwork/ckb-sdk-js/issues"
},
"gitHead": "51d076e98f34cf15dda4bc5f3e434f1f6de54bb7"
"gitHead": "592c7cb58fd830f8bc07f5f08551811ba0197195"
}