Skip to content

Commit

Permalink
1.8 (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Jan 9, 2020
1 parent c1a2393 commit c776f0d
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 63 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.8.1

- Add cross-client encryption/decryption support (Thanks to https://github.com/hskang9)

# 1.7.1

- `formatBalance` signature now allows to force unit displays
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"packages": [
"packages/*"
],
"version": "1.8.0-beta.3"
"version": "1.8.0"
}
4 changes: 2 additions & 2 deletions packages/chainspec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/chainspec",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "Contains chain specifications for known chains",
"main": "index.js",
"keywords": [
Expand All @@ -26,6 +26,6 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/chainspec#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3"
"@polkadot/util": "^1.8.0"
}
}
6 changes: 3 additions & 3 deletions packages/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/db",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "Implementation of a basic sync in-memory and on-disk databases with overlays",
"main": "index.js",
"keywords": [
Expand All @@ -26,8 +26,8 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/db#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/trie-hash": "^1.8.0-beta.3",
"@polkadot/util": "^1.8.0-beta.3",
"@polkadot/trie-hash": "^1.8.0",
"@polkadot/util": "^1.8.0",
"lru_map": "^0.3.3"
}
}
6 changes: 3 additions & 3 deletions packages/keyring/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/keyring",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "Keyring management",
"main": "index.js",
"publishConfig": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/keyring#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3",
"@polkadot/util-crypto": "^1.8.0-beta.3"
"@polkadot/util": "^1.8.0",
"@polkadot/util-crypto": "^1.8.0"
}
}
4 changes: 2 additions & 2 deletions packages/trie-codec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/trie-codec",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "This is an implementation of the codec for Substrate Trie",
"main": "index.js",
"keywords": [
Expand All @@ -26,6 +26,6 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-codec#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3"
"@polkadot/util": "^1.8.0"
}
}
16 changes: 8 additions & 8 deletions packages/trie-db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/trie-db",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "This is an implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper, adapted for Polkadot",
"main": "index.js",
"keywords": [
Expand All @@ -26,15 +26,15 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-db#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/db": "^1.8.0-beta.3",
"@polkadot/trie-codec": "^1.8.0-beta.3",
"@polkadot/trie-hash": "^1.8.0-beta.3",
"@polkadot/util": "^1.8.0-beta.3",
"@polkadot/util-crypto": "^1.8.0-beta.3"
"@polkadot/db": "^1.8.0",
"@polkadot/trie-codec": "^1.8.0",
"@polkadot/trie-hash": "^1.8.0",
"@polkadot/util": "^1.8.0",
"@polkadot/util-crypto": "^1.8.0"
},
"devDependencies": {
"@polkadot/chainspec": "^1.8.0-beta.3",
"@polkadot/util-rlp": "^1.8.0-beta.3",
"@polkadot/chainspec": "^1.8.0",
"@polkadot/util-rlp": "^1.8.0",
"ethereumjs-testing": "1.0.4"
}
}
6 changes: 3 additions & 3 deletions packages/trie-hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/trie-hash",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "Generates trie roots from key-value pairs",
"main": "index.js",
"keywords": [
Expand All @@ -26,9 +26,9 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/trie-hash#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3"
"@polkadot/util": "^1.8.0"
},
"devDependencies": {
"@polkadot/chainspec": "^1.8.0-beta.3"
"@polkadot/chainspec": "^1.8.0"
}
}
4 changes: 2 additions & 2 deletions packages/util-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/util-crypto",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "A collection of useful crypto utilities for @polkadot",
"main": "index.js",
"keywords": [
Expand All @@ -26,7 +26,7 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/util-crypto#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3",
"@polkadot/util": "^1.8.0",
"@polkadot/wasm-crypto": "^0.14.1",
"@types/bip39": "^2.4.2",
"@types/bs58": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/util-rlp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/util-rlp",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "RLP encoding and decoding",
"main": "index.js",
"keywords": [
Expand Down Expand Up @@ -28,7 +28,7 @@
"homepage": "https://github.com/polkadot-js/common/tree/master/packages/util-rlp#readme",
"dependencies": {
"@babel/runtime": "^7.7.7",
"@polkadot/util": "^1.8.0-beta.3"
"@polkadot/util": "^1.8.0"
},
"devDependencies": {
"ethereumjs-testing": "1.0.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkadot/util",
"version": "1.8.0-beta.3",
"version": "1.8.0",
"description": "A collection of useful utilities for @polkadot",
"main": "index.js",
"keywords": [
Expand Down
42 changes: 6 additions & 36 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4473,7 +4473,7 @@ [email protected], debug@~3.1.0:
dependencies:
ms "2.0.0"

debug@^3.0.0, debug@^3.1.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6:
debug@^3.0.0, debug@^3.1.0, debug@^3.1.1, debug@^3.2.5:
version "3.2.6"
resolved "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==
Expand Down Expand Up @@ -4659,11 +4659,6 @@ detect-indent@^5.0.0:
resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50=

detect-libc@^1.0.2:
version "1.0.3"
resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=

detect-newline@^2.1.0:
version "2.1.0"
resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
Expand Down Expand Up @@ -6527,7 +6522,7 @@ humanize-url@^1.0.0:
normalize-url "^1.0.0"
strip-url-auth "^1.0.0"

[email protected], iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13:
[email protected], iconv-lite@^0.4.24, iconv-lite@~0.4.13:
version "0.4.24"
resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
Expand Down Expand Up @@ -8659,15 +8654,6 @@ natural-compare@^1.4.0:
resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=

needle@^2.2.1:
version "2.4.0"
resolved "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
dependencies:
debug "^3.2.6"
iconv-lite "^0.4.4"
sax "^1.2.4"

[email protected]:
version "0.6.2"
resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
Expand Down Expand Up @@ -8783,22 +8769,6 @@ node-notifier@^5.4.2:
shellwords "^0.1.1"
which "^1.3.0"

node-pre-gyp@*:
version "0.14.0"
resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83"
integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==
dependencies:
detect-libc "^1.0.2"
mkdirp "^0.5.1"
needle "^2.2.1"
nopt "^4.0.1"
npm-packlist "^1.1.6"
npmlog "^4.0.2"
rc "^1.2.7"
rimraf "^2.6.1"
semver "^5.3.0"
tar "^4.4.2"

node-releases@^1.1.44:
version "1.1.44"
resolved "https://registry.npmjs.org/node-releases/-/node-releases-1.1.44.tgz#cd66438a6eb875e3eb012b6a12e48d9f4326ffd7"
Expand Down Expand Up @@ -8915,7 +8885,7 @@ npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
semver "^5.6.0"
validate-npm-package-name "^3.0.0"

npm-packlist@^1.1.6, npm-packlist@^1.4.4:
npm-packlist@^1.4.4:
version "1.4.7"
resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.7.tgz#9e954365a06b80b18111ea900945af4f88ed4848"
integrity sha512-vAj7dIkp5NhieaGZxBJB8fF4R0078rqsmhJcAfXZ6O7JJhjhPK96n5Ry1oZcfLXgfun0GWTZPOxaEyqv8GBykQ==
Expand All @@ -8939,7 +8909,7 @@ npm-run-path@^2.0.0:
dependencies:
path-key "^2.0.0"

npmlog@^4.0.2, npmlog@^4.1.2:
npmlog@^4.1.2:
version "4.1.2"
resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
Expand Down Expand Up @@ -10743,7 +10713,7 @@ [email protected]:
dependencies:
glob "^7.1.3"

rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3:
rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3:
version "2.7.1"
resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
Expand Down Expand Up @@ -11667,7 +11637,7 @@ tapable@^1.0.0, tapable@^1.1.3:
resolved "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==

tar@^4.4.10, tar@^4.4.12, tar@^4.4.2, tar@^4.4.8:
tar@^4.4.10, tar@^4.4.12, tar@^4.4.8:
version "4.4.13"
resolved "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525"
integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==
Expand Down

0 comments on commit c776f0d

Please sign in to comment.