From 5924749cdc66abd63ce1d60440d665bafaf3a64b Mon Sep 17 00:00:00 2001 From: Keith Date: Mon, 30 Sep 2019 09:55:56 +0800 Subject: [PATCH] chore: update package versions and changelogs --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++ lerna.json | 2 +- packages/ckb-sdk-core/CHANGELOG.md | 27 ++++++++++++++++++++++ packages/ckb-sdk-core/package.json | 8 +++---- packages/ckb-sdk-rpc/CHANGELOG.md | 27 ++++++++++++++++++++++ packages/ckb-sdk-rpc/package.json | 6 ++--- packages/ckb-sdk-utils/CHANGELOG.md | 22 ++++++++++++++++++ packages/ckb-sdk-utils/package.json | 4 ++-- packages/ckb-types/CHANGELOG.md | 26 +++++++++++++++++++++ packages/ckb-types/package.json | 2 +- 10 files changed, 148 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5311fd3..e7b062e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,41 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.1...v0.22.0) (2019-10-05) + + +### Features + +* **address:** enable address to load cells and generate signed transactions ([2e5803c](https://github.com/nervosnetwork/ckb-sdk-js/commit/2e5803c)) +* **cli:** deprive this repo of the ckb-cli ([2befcff](https://github.com/nervosnetwork/ckb-sdk-js/commit/2befcff)) +* **core:** move the address module into the core module ([10dd017](https://github.com/nervosnetwork/ckb-sdk-js/commit/10dd017)) +* **rpc:** update rpc signatures ([201901d](https://github.com/nervosnetwork/ckb-sdk-js/commit/201901d)) +* **rpc:** use bigint instead of number in the interfaces of rpc methods ([c8d994b](https://github.com/nervosnetwork/ckb-sdk-js/commit/c8d994b)) +* **type:** update the fields of BlockHeader ([55de626](https://github.com/nervosnetwork/ckb-sdk-js/commit/55de626)) +* **type:** update the result of getCellsByLockHash method ([31eb97e](https://github.com/nervosnetwork/ckb-sdk-js/commit/31eb97e)) +* **type:** update the structure of Epoch ([76770f4](https://github.com/nervosnetwork/ckb-sdk-js/commit/76770f4)) +* **type:** update the type of args ([09d649a](https://github.com/nervosnetwork/ckb-sdk-js/commit/09d649a)) +* **type:** update the type of witness ([71f53b0](https://github.com/nervosnetwork/ckb-sdk-js/commit/71f53b0)) +* **utils:** update the interface of utils.parseAddress ([90feb91](https://github.com/nervosnetwork/ckb-sdk-js/commit/90feb91)) + + +### BREAKING CHANGES + +* **type:** replace difficulty with compactTarget in Epoch +* **type:** 1. remove unclesCount +2. merge witnessesRoot and transactionRoot +3. replace difficulty with compactTarget +* **type:** change the type of args from string[] to string +* **type:** change the type of witnes from { data: string[] } to string +* **rpc:** use bigint instead of number in the interfaces of rpc methods +* **utils:** remove the prefix from the parameter list of utils.parseAddress +* **core:** move the address module into the core module +* **type:** update the result of getCellsByLockHash method + + + + + ## [0.21.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.0...v0.21.1) (2019-09-24) diff --git a/lerna.json b/lerna.json index 83a96a33..c79555af 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "packages": [ "packages/*" ], - "version": "0.21.1" + "version": "0.22.0" } diff --git a/packages/ckb-sdk-core/CHANGELOG.md b/packages/ckb-sdk-core/CHANGELOG.md index 7790ead7..221efd49 100644 --- a/packages/ckb-sdk-core/CHANGELOG.md +++ b/packages/ckb-sdk-core/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.1...v0.22.0) (2019-10-05) + + +### Features + +* **address:** enable address to load cells and generate signed transactions ([2e5803c](https://github.com/nervosnetwork/ckb-sdk-js/commit/2e5803c)) +* **core:** move the address module into the core module ([10dd017](https://github.com/nervosnetwork/ckb-sdk-js/commit/10dd017)) +* **type:** update the fields of BlockHeader ([55de626](https://github.com/nervosnetwork/ckb-sdk-js/commit/55de626)) +* **type:** update the type of args ([09d649a](https://github.com/nervosnetwork/ckb-sdk-js/commit/09d649a)) +* **type:** update the type of witness ([71f53b0](https://github.com/nervosnetwork/ckb-sdk-js/commit/71f53b0)) +* **utils:** update the interface of utils.parseAddress ([90feb91](https://github.com/nervosnetwork/ckb-sdk-js/commit/90feb91)) + + +### BREAKING CHANGES + +* **type:** 1. remove unclesCount +2. merge witnessesRoot and transactionRoot +3. replace difficulty with compactTarget +* **type:** change the type of args from string[] to string +* **type:** change the type of witnes from { data: string[] } to string +* **utils:** remove the prefix from the parameter list of utils.parseAddress +* **core:** move the address module into the core module + + + + + ## [0.21.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.0...v0.21.1) (2019-09-24) **Note:** Version bump only for package @nervosnetwork/ckb-sdk-core diff --git a/packages/ckb-sdk-core/package.json b/packages/ckb-sdk-core/package.json index bead533f..76257e97 100644 --- a/packages/ckb-sdk-core/package.json +++ b/packages/ckb-sdk-core/package.json @@ -1,6 +1,6 @@ { "name": "@nervosnetwork/ckb-sdk-core", - "version": "0.21.1", + "version": "0.22.0", "description": "JavaScript SDK for Nervos Network CKB Project", "author": "Nervos ", "homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme", @@ -30,9 +30,9 @@ "url": "https://github.com/nervosnetwork/ckb-sdk-js/issues" }, "dependencies": { - "@nervosnetwork/ckb-sdk-rpc": "0.21.1", - "@nervosnetwork/ckb-sdk-utils": "0.21.1", - "@nervosnetwork/ckb-types": "0.21.1" + "@nervosnetwork/ckb-sdk-rpc": "0.22.0", + "@nervosnetwork/ckb-sdk-utils": "0.22.0", + "@nervosnetwork/ckb-types": "0.22.0" }, "gitHead": "41659647a9b5376daec6a0b839ad3f3d4bbd4ff2" } diff --git a/packages/ckb-sdk-rpc/CHANGELOG.md b/packages/ckb-sdk-rpc/CHANGELOG.md index 37a3b4b6..6b97d8c0 100644 --- a/packages/ckb-sdk-rpc/CHANGELOG.md +++ b/packages/ckb-sdk-rpc/CHANGELOG.md @@ -3,6 +3,33 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.1...v0.22.0) (2019-10-05) + + +### Features + +* **rpc:** update rpc signatures ([201901d](https://github.com/nervosnetwork/ckb-sdk-js/commit/201901d)) +* **rpc:** use bigint instead of number in the interfaces of rpc methods ([c8d994b](https://github.com/nervosnetwork/ckb-sdk-js/commit/c8d994b)) +* **type:** update the fields of BlockHeader ([55de626](https://github.com/nervosnetwork/ckb-sdk-js/commit/55de626)) +* **type:** update the result of getCellsByLockHash method ([31eb97e](https://github.com/nervosnetwork/ckb-sdk-js/commit/31eb97e)) +* **type:** update the structure of Epoch ([76770f4](https://github.com/nervosnetwork/ckb-sdk-js/commit/76770f4)) +* **type:** update the type of args ([09d649a](https://github.com/nervosnetwork/ckb-sdk-js/commit/09d649a)) + + +### BREAKING CHANGES + +* **type:** replace difficulty with compactTarget in Epoch +* **type:** 1. remove unclesCount +2. merge witnessesRoot and transactionRoot +3. replace difficulty with compactTarget +* **type:** change the type of args from string[] to string +* **rpc:** use bigint instead of number in the interfaces of rpc methods +* **type:** update the result of getCellsByLockHash method + + + + + ## [0.21.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.0...v0.21.1) (2019-09-24) diff --git a/packages/ckb-sdk-rpc/package.json b/packages/ckb-sdk-rpc/package.json index fe915bc3..040bad0c 100644 --- a/packages/ckb-sdk-rpc/package.json +++ b/packages/ckb-sdk-rpc/package.json @@ -1,6 +1,6 @@ { "name": "@nervosnetwork/ckb-sdk-rpc", - "version": "0.21.1", + "version": "0.22.0", "description": "RPC module of @nervosnetwork/ckb-sdk-core", "author": "Nervos ", "homepage": "https://github.com/nervosnetwork/ckb-sdk-js/packages/ckb-rpc#readme", @@ -32,11 +32,11 @@ "url": "https://github.com/nervosnetwork/ckb-sdk-js/issues" }, "dependencies": { - "@nervosnetwork/ckb-sdk-utils": "0.21.1", + "@nervosnetwork/ckb-sdk-utils": "0.22.0", "axios": "0.19.0" }, "devDependencies": { - "@nervosnetwork/ckb-types": "0.21.1", + "@nervosnetwork/ckb-types": "0.22.0", "dotenv": "8.1.0" }, "gitHead": "41659647a9b5376daec6a0b839ad3f3d4bbd4ff2" diff --git a/packages/ckb-sdk-utils/CHANGELOG.md b/packages/ckb-sdk-utils/CHANGELOG.md index b95554a8..1bfc14b5 100644 --- a/packages/ckb-sdk-utils/CHANGELOG.md +++ b/packages/ckb-sdk-utils/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.1...v0.22.0) (2019-10-05) + + +### Features + +* **core:** move the address module into the core module ([10dd017](https://github.com/nervosnetwork/ckb-sdk-js/commit/10dd017)) +* **type:** update the type of args ([09d649a](https://github.com/nervosnetwork/ckb-sdk-js/commit/09d649a)) +* **type:** update the type of witness ([71f53b0](https://github.com/nervosnetwork/ckb-sdk-js/commit/71f53b0)) +* **utils:** update the interface of utils.parseAddress ([90feb91](https://github.com/nervosnetwork/ckb-sdk-js/commit/90feb91)) + + +### BREAKING CHANGES + +* **type:** change the type of args from string[] to string +* **type:** change the type of witnes from { data: string[] } to string +* **utils:** remove the prefix from the parameter list of utils.parseAddress +* **core:** move the address module into the core module + + + + + ## [0.21.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.0...v0.21.1) (2019-09-24) **Note:** Version bump only for package @nervosnetwork/ckb-sdk-utils diff --git a/packages/ckb-sdk-utils/package.json b/packages/ckb-sdk-utils/package.json index f6dc3db9..c479f2d8 100644 --- a/packages/ckb-sdk-utils/package.json +++ b/packages/ckb-sdk-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nervosnetwork/ckb-sdk-utils", - "version": "0.21.1", + "version": "0.22.0", "description": "Utils module of @nervosnetwork/ckb-sdk-core", "author": "Nervos ", "homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme", @@ -30,7 +30,7 @@ "url": "https://github.com/nervosnetwork/ckb-sdk-js/issues" }, "dependencies": { - "@nervosnetwork/ckb-types": "0.21.1", + "@nervosnetwork/ckb-types": "0.22.0", "blake2b-wasm": "1.1.7", "elliptic": "6.5.1" }, diff --git a/packages/ckb-types/CHANGELOG.md b/packages/ckb-types/CHANGELOG.md index 4a154fa8..346b24ad 100644 --- a/packages/ckb-types/CHANGELOG.md +++ b/packages/ckb-types/CHANGELOG.md @@ -3,6 +3,32 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.1...v0.22.0) (2019-10-05) + + +### Features + +* **type:** update the fields of BlockHeader ([55de626](https://github.com/nervosnetwork/ckb-sdk-js/commit/55de626)) +* **type:** update the result of getCellsByLockHash method ([31eb97e](https://github.com/nervosnetwork/ckb-sdk-js/commit/31eb97e)) +* **type:** update the structure of Epoch ([76770f4](https://github.com/nervosnetwork/ckb-sdk-js/commit/76770f4)) +* **type:** update the type of args ([09d649a](https://github.com/nervosnetwork/ckb-sdk-js/commit/09d649a)) +* **type:** update the type of witness ([71f53b0](https://github.com/nervosnetwork/ckb-sdk-js/commit/71f53b0)) + + +### BREAKING CHANGES + +* **type:** replace difficulty with compactTarget in Epoch +* **type:** 1. remove unclesCount +2. merge witnessesRoot and transactionRoot +3. replace difficulty with compactTarget +* **type:** change the type of args from string[] to string +* **type:** change the type of witnes from { data: string[] } to string +* **type:** update the result of getCellsByLockHash method + + + + + ## [0.21.1](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.21.0...v0.21.1) (2019-09-24) diff --git a/packages/ckb-types/package.json b/packages/ckb-types/package.json index db4e6d13..cc503202 100644 --- a/packages/ckb-types/package.json +++ b/packages/ckb-types/package.json @@ -1,6 +1,6 @@ { "name": "@nervosnetwork/ckb-types", - "version": "0.21.1", + "version": "0.22.0", "description": "Type module of @nervosnetwork/ckb-sdk-core", "author": "Nervos ", "homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme",