Skip to content

Commit

Permalink
[CI Skip] 1.8.1
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
actions-user committed Jan 9, 2020
1 parent c776f0d commit f5f35ee
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 28 deletions.
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"
"version": "1.8.1"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.8.0-beta.3",
"version": "1.8.1",
"private": true,
"engines": {
"yarn": "^1.10.1"
Expand Down
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",
"version": "1.8.1",
"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"
"@polkadot/util": "^1.8.1"
}
}
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",
"version": "1.8.1",
"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",
"@polkadot/util": "^1.8.0",
"@polkadot/trie-hash": "^1.8.1",
"@polkadot/util": "^1.8.1",
"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",
"version": "1.8.1",
"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",
"@polkadot/util-crypto": "^1.8.0"
"@polkadot/util": "^1.8.1",
"@polkadot/util-crypto": "^1.8.1"
}
}
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",
"version": "1.8.1",
"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"
"@polkadot/util": "^1.8.1"
}
}
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",
"version": "1.8.1",
"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",
"@polkadot/trie-codec": "^1.8.0",
"@polkadot/trie-hash": "^1.8.0",
"@polkadot/util": "^1.8.0",
"@polkadot/util-crypto": "^1.8.0"
"@polkadot/db": "^1.8.1",
"@polkadot/trie-codec": "^1.8.1",
"@polkadot/trie-hash": "^1.8.1",
"@polkadot/util": "^1.8.1",
"@polkadot/util-crypto": "^1.8.1"
},
"devDependencies": {
"@polkadot/chainspec": "^1.8.0",
"@polkadot/util-rlp": "^1.8.0",
"@polkadot/chainspec": "^1.8.1",
"@polkadot/util-rlp": "^1.8.1",
"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",
"version": "1.8.1",
"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"
"@polkadot/util": "^1.8.1"
},
"devDependencies": {
"@polkadot/chainspec": "^1.8.0"
"@polkadot/chainspec": "^1.8.1"
}
}
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",
"version": "1.8.1",
"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",
"@polkadot/util": "^1.8.1",
"@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",
"version": "1.8.1",
"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"
"@polkadot/util": "^1.8.1"
},
"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",
"version": "1.8.1",
"description": "A collection of useful utilities for @polkadot",
"main": "index.js",
"keywords": [
Expand Down

0 comments on commit f5f35ee

Please sign in to comment.