Skip to content

Commit

Permalink
[ᚬmaster] Rc/v0.26.3 (#414)
Browse files Browse the repository at this point in the history
[ᚬmaster] Rc/v0.26.3

Co-authored-by: xwartz <[email protected]>
  • Loading branch information
Keith-CY and xwartz authored Dec 24, 2019
2 parents 7dcf262 + 121bea6 commit 28ff958
Show file tree
Hide file tree
Showing 20 changed files with 5,545 additions and 542 deletions.
8 changes: 8 additions & 0 deletions 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.26.3](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.2...v0.26.3) (2019-12-23)

**Note:** Version bump only for package ckb-sdk-js





## [0.26.2](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.1...v0.26.2) (2019-12-16)

**Note:** Version bump only for package ckb-sdk-js
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "0.26.2"
"version": "0.26.3"
}
8 changes: 8 additions & 0 deletions packages/ckb-sdk-core/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.26.3](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.2...v0.26.3) (2019-12-23)

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





## [0.26.2](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.1...v0.26.2) (2019-12-16)

**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.26.2",
"version": "0.26.3",
"description": "JavaScript SDK for Nervos Network CKB Project",
"author": "Nervos <[email protected]>",
"homepage": "https://github.com/nervosnetwork/ckb-sdk-js#readme",
Expand Down Expand Up @@ -31,9 +31,9 @@
"url": "https://github.com/nervosnetwork/ckb-sdk-js/issues"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-rpc": "0.26.2",
"@nervosnetwork/ckb-sdk-utils": "0.26.2",
"@nervosnetwork/ckb-types": "0.26.2"
"@nervosnetwork/ckb-sdk-rpc": "0.26.3",
"@nervosnetwork/ckb-sdk-utils": "0.26.3",
"@nervosnetwork/ckb-types": "0.26.3"
},
"gitHead": "499d0a148ef1b6fef10ccf49c57e76789d51f17b"
"gitHead": "e963f874553075afcb2d666dc9d883c6d87bae94"
}
8 changes: 8 additions & 0 deletions packages/ckb-sdk-rpc/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.26.3](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.2...v0.26.3) (2019-12-23)

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





## [0.26.2](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.1...v0.26.2) (2019-12-16)

**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.26.2",
"version": "0.26.3",
"description": "RPC module of @nervosnetwork/ckb-sdk-core",
"author": "Nervos <[email protected]>",
"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.26.2",
"@nervosnetwork/ckb-sdk-utils": "0.26.3",
"axios": "0.19.0"
},
"devDependencies": {
"@nervosnetwork/ckb-types": "0.26.2",
"@nervosnetwork/ckb-types": "0.26.3",
"dotenv": "8.1.0"
},
"gitHead": "499d0a148ef1b6fef10ccf49c57e76789d51f17b"
"gitHead": "e963f874553075afcb2d666dc9d883c6d87bae94"
}
1 change: 1 addition & 0 deletions packages/ckb-sdk-rpc/src/paramsFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const formatter = {
},
toNumber: (number: CKBComponents.Number | bigint): RPC.Number => {
if (typeof number === 'bigint') {
// @ts-ignore
return `0x${number.toString(16)}`
}
if (typeof number !== 'string') {
Expand Down
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.26.3](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.2...v0.26.3) (2019-12-23)

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





## [0.26.2](https://github.com/nervosnetwork/ckb-sdk-js/compare/v0.26.1...v0.26.2) (2019-12-16)

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

0 comments on commit 28ff958

Please sign in to comment.