Skip to content

Commit

Permalink
1.0.0 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr authored Aug 2, 2019
1 parent 231c3d0 commit ae142b5
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 28 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 0.95.0-beta.x
# 1.0.0

- `formatBalance` now allows for `Compact` inputs
- `formaBalance` now allows correct formatting of very large decimals

# 0.94.1

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": "0.95.0-beta.4"
"version": "1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4"
"@polkadot/util": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/trie-hash": "^0.95.0-beta.4",
"@polkadot/util": "^0.95.0-beta.4",
"@polkadot/trie-hash": "^1.0.0",
"@polkadot/util": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4",
"@polkadot/util-crypto": "^0.95.0-beta.4"
"@polkadot/util": "^1.0.0",
"@polkadot/util-crypto": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4"
"@polkadot/util": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/db": "^0.95.0-beta.4",
"@polkadot/trie-codec": "^0.95.0-beta.4",
"@polkadot/trie-hash": "^0.95.0-beta.4",
"@polkadot/util": "^0.95.0-beta.4",
"@polkadot/util-crypto": "^0.95.0-beta.4"
"@polkadot/db": "^1.0.0",
"@polkadot/trie-codec": "^1.0.0",
"@polkadot/trie-hash": "^1.0.0",
"@polkadot/util": "^1.0.0",
"@polkadot/util-crypto": "^1.0.0"
},
"devDependencies": {
"@polkadot/chainspec": "^0.95.0-beta.4",
"@polkadot/util-rlp": "^0.95.0-beta.4",
"@polkadot/chainspec": "^1.0.0",
"@polkadot/util-rlp": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4"
"@polkadot/util": "^1.0.0"
},
"devDependencies": {
"@polkadot/chainspec": "^0.95.0-beta.4"
"@polkadot/chainspec": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4",
"@polkadot/util": "^1.0.0",
"@polkadot/wasm-crypto": "^0.13.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": "0.95.0-beta.4",
"version": "1.0.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.5.5",
"@polkadot/util": "^0.95.0-beta.4"
"@polkadot/util": "^1.0.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": "0.95.0-beta.4",
"version": "1.0.0",
"description": "A collection of useful utilities for @polkadot",
"main": "index.js",
"keywords": [
Expand Down

0 comments on commit ae142b5

Please sign in to comment.