Skip to content

Commit 563dbbf

Browse files
authored
1.6 (#484)
1 parent 5a5bc7d commit 563dbbf

File tree

11 files changed

+29
-29
lines changed

11 files changed

+29
-29
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 1.6.0-beta.x
1+
# 1.6.1
22

3-
- `pair.sign(message)` now takes an optional second options parameter, currently defined as `{ withType: boolean }`. Here `withType` instructs the signing to prepend the type of signature (ed2551, sr25519 or ecdsa). This is used for the new Polkadot/Substrate MultiSignature format.
3+
- `pair.sign(message)` now takes an optional second `options?: SignOptions` parameter, where `SignOptions` is currently defined as `{ withType: boolean }`. Here `withType` instructs the signing to prepend the type of signature (ed2551, sr25519 or ecdsa). This is used for the new Polkadot/Substrate MultiSignature format.
44

55
# 1.5.1
66

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"packages": [
1010
"packages/*"
1111
],
12-
"version": "1.6.0-beta.13"
12+
"version": "1.6.0"
1313
}

packages/chainspec/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/chainspec",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "Contains chain specifications for known chains",
55
"main": "index.js",
66
"keywords": [
@@ -26,6 +26,6 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/chainspec#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/util": "^1.6.0-beta.13"
29+
"@polkadot/util": "^1.6.0"
3030
}
3131
}

packages/db/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/db",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "Implementation of a basic sync in-memory and on-disk databases with overlays",
55
"main": "index.js",
66
"keywords": [
@@ -26,8 +26,8 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/db#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/trie-hash": "^1.6.0-beta.13",
30-
"@polkadot/util": "^1.6.0-beta.13",
29+
"@polkadot/trie-hash": "^1.6.0",
30+
"@polkadot/util": "^1.6.0",
3131
"lru_map": "^0.3.3"
3232
}
3333
}

packages/keyring/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/keyring",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "Keyring management",
55
"main": "index.js",
66
"publishConfig": {
@@ -28,7 +28,7 @@
2828
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/keyring#readme",
2929
"dependencies": {
3030
"@babel/runtime": "^7.6.3",
31-
"@polkadot/util": "^1.6.0-beta.13",
32-
"@polkadot/util-crypto": "^1.6.0-beta.13"
31+
"@polkadot/util": "^1.6.0",
32+
"@polkadot/util-crypto": "^1.6.0"
3333
}
3434
}

packages/trie-codec/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/trie-codec",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "This is an implementation of the codec for Substrate Trie",
55
"main": "index.js",
66
"keywords": [
@@ -26,6 +26,6 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-codec#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/util": "^1.6.0-beta.13"
29+
"@polkadot/util": "^1.6.0"
3030
}
3131
}

packages/trie-db/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/trie-db",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "This is an implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper, adapted for Polkadot",
55
"main": "index.js",
66
"keywords": [
@@ -26,15 +26,15 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-db#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/db": "^1.6.0-beta.13",
30-
"@polkadot/trie-codec": "^1.6.0-beta.13",
31-
"@polkadot/trie-hash": "^1.6.0-beta.13",
32-
"@polkadot/util": "^1.6.0-beta.13",
33-
"@polkadot/util-crypto": "^1.6.0-beta.13"
29+
"@polkadot/db": "^1.6.0",
30+
"@polkadot/trie-codec": "^1.6.0",
31+
"@polkadot/trie-hash": "^1.6.0",
32+
"@polkadot/util": "^1.6.0",
33+
"@polkadot/util-crypto": "^1.6.0"
3434
},
3535
"devDependencies": {
36-
"@polkadot/chainspec": "^1.6.0-beta.13",
37-
"@polkadot/util-rlp": "^1.6.0-beta.13",
36+
"@polkadot/chainspec": "^1.6.0",
37+
"@polkadot/util-rlp": "^1.6.0",
3838
"ethereumjs-testing": "1.0.4"
3939
}
4040
}

packages/trie-hash/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/trie-hash",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "Generates trie roots from key-value pairs",
55
"main": "index.js",
66
"keywords": [
@@ -26,9 +26,9 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-hash#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/util": "^1.6.0-beta.13"
29+
"@polkadot/util": "^1.6.0"
3030
},
3131
"devDependencies": {
32-
"@polkadot/chainspec": "^1.6.0-beta.13"
32+
"@polkadot/chainspec": "^1.6.0"
3333
}
3434
}

packages/util-crypto/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/util-crypto",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "A collection of useful crypto utilities for @polkadot",
55
"main": "index.js",
66
"keywords": [
@@ -26,7 +26,7 @@
2626
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/util-crypto#readme",
2727
"dependencies": {
2828
"@babel/runtime": "^7.6.3",
29-
"@polkadot/util": "^1.6.0-beta.13",
29+
"@polkadot/util": "^1.6.0",
3030
"@polkadot/wasm-crypto": "^0.14.1",
3131
"@types/bip39": "^2.4.2",
3232
"@types/bs58": "^4.0.0",

packages/util-rlp/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/util-rlp",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "RLP encoding and decoding",
55
"main": "index.js",
66
"keywords": [
@@ -28,7 +28,7 @@
2828
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/util-rlp#readme",
2929
"dependencies": {
3030
"@babel/runtime": "^7.6.3",
31-
"@polkadot/util": "^1.6.0-beta.13"
31+
"@polkadot/util": "^1.6.0"
3232
},
3333
"devDependencies": {
3434
"ethereumjs-testing": "1.0.4"

packages/util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/util",
3-
"version": "1.6.0-beta.13",
3+
"version": "1.6.0",
44
"description": "A collection of useful utilities for @polkadot",
55
"main": "index.js",
66
"keywords": [

0 commit comments

Comments
 (0)