Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
⬆️ Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
shuse2 committed Nov 11, 2020
1 parent b9e2f1d commit d74fad8
Show file tree
Hide file tree
Showing 19 changed files with 618 additions and 340 deletions.
35 changes: 21 additions & 14 deletions commander/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Upon successful completion, NPM will add the `lisk-commander` executable `lisk`
$ lisk COMMAND
running command...
$ lisk (-v|--version|version)
lisk-commander/2.0.0 darwin-x64 node-v8.12.0
lisk-commander/4.0.0 darwin-x64 node-v12.18.3
$ lisk --help [COMMAND]
A command line interface for Lisk

Expand All @@ -31,19 +31,26 @@ USAGE
$ lisk [COMMAND]

COMMANDS
account Commands relating to Lisk accounts.
block Commands relating to Lisk blocks.
config Manages Lisk Commander configuration.
core Install and Manages Lisk Core instances.
copyright Displays copyright notice.
delegate Commands relating to Lisk delegates.
help Displays help.
message Commands relating to user messages.
node Commands relating to Lisk node.
passphrase Commands relating to Lisk passphrases.
signature Commands relating to signatures for Lisk transactions from multisignature accounts.
transaction Commands relating to Lisk transactions.
warranty Displays warranty notice.
account Commands relating to Lisk Core accounts.
block Commands relating to Lisk Core blocks.
blockchain Commands relating to Lisk Core blockchain data.
config Commands relating to Lisk Core node configuration.
copyright Displays copyright notice.
core Install an instance of Lisk Core.
delegate Commands relating to Lisk delegates.
forger-info Commands relating to Lisk Core forger-info data.
forging Commands relating to Lisk Core forging.
hash-onion
help Displays help.
message Commands relating to user messages.
network-identifier
node Commands relating to Lisk Core node.
passphrase Commands relating to Lisk Core passphrases.
sdk Commands relating to Lisk SDK development.
signature Commands relating to signatures for Lisk transactions from multisignature accounts.
start Start Lisk Core Node.
transaction Commands relating to Lisk Core transactions.
warranty Displays warranty notice.
```

### Running Tests
Expand Down
14 changes: 7 additions & 7 deletions commander/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-commander",
"version": "4.0.0-alpha.0",
"version": "4.0.0",
"description": "A command line interface for Lisk",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -99,12 +99,12 @@
"/docs"
],
"dependencies": {
"@liskhq/lisk-api-client": "4.0.0-alpha.0",
"@liskhq/lisk-constants": "1.3.1-alpha.0",
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-validator": "0.4.0-alpha.0",
"@liskhq/lisk-api-client": "^4.0.0",
"@liskhq/lisk-constants": "^1.3.1",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"@liskhq/lisk-transactions": "^4.0.0",
"@liskhq/lisk-validator": "^0.4.0",
"@oclif/command": "1.5.19",
"@oclif/config": "1.14.0",
"@oclif/errors": "1.2.2",
Expand Down
2 changes: 1 addition & 1 deletion elements/lisk-api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-api-client",
"version": "4.0.0-alpha.0",
"version": "4.0.0",
"description": "An API client for the Lisk network",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down
10 changes: 5 additions & 5 deletions elements/lisk-bft/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-bft",
"version": "0.1.0-alpha.0",
"version": "0.1.0",
"description": "Byzantine fault tolerance implementation according to the Lisk protocol",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,14 +34,14 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-validator": "0.4.0-alpha.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-validator": "^0.4.0",
"@types/node": "12.12.11",
"debug": "4.1.1"
},
"devDependencies": {
"@liskhq/lisk-chain": "0.1.0-alpha.0",
"@liskhq/lisk-dpos": "0.1.0-alpha.0",
"@liskhq/lisk-chain": "^0.1.0",
"@liskhq/lisk-dpos": "^0.1.0",
"@types/debug": "4.1.5",
"@types/faker": "4.1.10",
"@types/jest": "25.1.3",
Expand Down
8 changes: 4 additions & 4 deletions elements/lisk-chain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-chain",
"version": "0.1.0-alpha.0",
"version": "0.1.0",
"description": "Blocks and state management implementation that are used for block processing according to the Lisk protocol",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,15 +34,15 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-transactions": "^4.0.0",
"@types/node": "12.12.11",
"debug": "4.1.1",
"lodash.clonedeep": "4.5.0",
"lodash.isequal": "4.5.0"
},
"devDependencies": {
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"@types/debug": "4.1.5",
"@types/faker": "4.1.10",
"@types/jest": "25.1.3",
Expand Down
12 changes: 6 additions & 6 deletions elements/lisk-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-client",
"version": "4.0.0-alpha.1",
"version": "4.0.0",
"description": "A default set of Elements for use by clients of the Lisk network",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -43,11 +43,11 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-api-client": "4.0.0-alpha.0",
"@liskhq/lisk-constants": "1.3.1-alpha.0",
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-api-client": "^4.0.0",
"@liskhq/lisk-constants": "^1.3.1",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"@liskhq/lisk-transactions": "^4.0.0",
"@types/node": "12.12.11",
"buffer": "liskHQ/buffer#4d498e6"
},
Expand Down
2 changes: 1 addition & 1 deletion elements/lisk-constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-constants",
"version": "1.3.1-alpha.0",
"version": "1.3.1",
"description": "General constants for use with Lisk-related software",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion elements/lisk-cryptography/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-cryptography",
"version": "2.5.0-alpha.0",
"version": "2.5.0",
"description": "General cryptographic functions for use with Lisk-related software",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down
8 changes: 4 additions & 4 deletions elements/lisk-dpos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-dpos",
"version": "0.1.0-alpha.0",
"version": "0.1.0",
"description": "DPoS consensus algorithm implementation according to the Lisk protocol",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,13 +34,13 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"@types/node": "12.12.11",
"debug": "4.1.1"
},
"devDependencies": {
"@liskhq/lisk-chain": "0.1.0-alpha.0",
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-chain": "^0.1.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"@types/debug": "4.1.5",
"@types/jest": "25.1.3",
"@types/jest-when": "2.7.0",
Expand Down
18 changes: 9 additions & 9 deletions elements/lisk-elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-elements",
"version": "4.0.0-alpha.1",
"version": "4.0.0",
"description": "Elements for building blockchain applications in the Lisk network",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,14 +34,14 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-api-client": "4.0.0-alpha.0",
"@liskhq/lisk-constants": "1.3.1-alpha.0",
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-p2p": "0.5.0-alpha.1",
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-transaction-pool": "0.3.0-alpha.1",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-validator": "0.4.0-alpha.0",
"@liskhq/lisk-api-client": "^4.0.0",
"@liskhq/lisk-constants": "^1.3.1",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-p2p": "^0.5.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"@liskhq/lisk-transaction-pool": "^0.3.0",
"@liskhq/lisk-transactions": "^4.0.0",
"@liskhq/lisk-validator": "^0.4.0",
"@types/node": "12.12.11"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions elements/lisk-p2p/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-p2p",
"version": "0.5.0-alpha.1",
"version": "0.5.0",
"description": "Unstructured P2P library for use with Lisk-related software",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -40,7 +40,7 @@
"disableLocalIPs": "./scripts/disableTestLocalIPs.sh 2 19"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"lodash.shuffle": "4.2.0",
"semver": "7.1.3",
"socketcluster-client": "14.3.1",
Expand Down
2 changes: 1 addition & 1 deletion elements/lisk-passphrase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-passphrase",
"version": "3.0.1-alpha.0",
"version": "3.0.1",
"description": "Mnemonic passphrase helpers for use with Lisk-related software",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions elements/lisk-transaction-pool/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-transaction-pool",
"version": "0.3.0-alpha.1",
"version": "0.3.0",
"description": "Transaction pool library for use with Lisk-related software",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -35,7 +35,7 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"debug": "4.1.1"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions elements/lisk-transactions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-transactions",
"version": "4.0.0-alpha.1",
"version": "4.0.0",
"description": "Everything related to transactions according to the Lisk protocol",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -34,8 +34,8 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-validator": "0.4.0-alpha.0"
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-validator": "^0.4.0"
},
"devDependencies": {
"@types/jest": "25.1.3",
Expand Down
4 changes: 2 additions & 2 deletions elements/lisk-validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liskhq/lisk-validator",
"version": "0.4.0-alpha.0",
"version": "0.4.0",
"description": "Validation library according to the Lisk protocol",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -35,7 +35,7 @@
"prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check"
},
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"@types/node": "12.12.11",
"@types/semver": "7.1.0",
"@types/validator": "12.0.1",
Expand Down
20 changes: 10 additions & 10 deletions framework/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-framework",
"version": "0.6.0-alpha.1",
"version": "0.6.0",
"description": "Lisk blockchain application platform",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -44,14 +44,14 @@
"mocha:network": "node test/mocha/common/lisk-mocha-runner network"
},
"dependencies": {
"@liskhq/lisk-bft": "0.1.0-alpha.0",
"@liskhq/lisk-chain": "0.1.0-alpha.0",
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-dpos": "0.1.0-alpha.0",
"@liskhq/lisk-p2p": "0.5.0-alpha.1",
"@liskhq/lisk-transaction-pool": "0.3.0-alpha.1",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-validator": "0.4.0-alpha.0",
"@liskhq/lisk-bft": "^0.1.0",
"@liskhq/lisk-chain": "^0.1.0",
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-dpos": "^0.1.0",
"@liskhq/lisk-p2p": "^0.5.0",
"@liskhq/lisk-transaction-pool": "^0.3.0",
"@liskhq/lisk-transactions": "^4.0.0",
"@liskhq/lisk-validator": "^0.4.0",
"ajv": "6.12.0",
"ajv-keywords": "3.4.1",
"body-parser": "1.19.0",
Expand Down Expand Up @@ -85,7 +85,7 @@
"z-schema": "4.2.2"
},
"devDependencies": {
"@liskhq/lisk-passphrase": "3.0.1-alpha.0",
"@liskhq/lisk-passphrase": "^3.0.1",
"async": "3.2.0",
"bluebird": "3.7.2",
"chai": "4.2.0",
Expand Down
2 changes: 1 addition & 1 deletion sdk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lisk-sdk",
"version": "4.0.0-alpha.1",
"version": "4.0.0",
"description": "Official SDK for the Lisk blockchain application platform",
"author": "Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>",
"license": "Apache-2.0",
Expand All @@ -22,9 +22,9 @@
},
"main": "src/index.js",
"dependencies": {
"@liskhq/lisk-cryptography": "2.5.0-alpha.0",
"@liskhq/lisk-transactions": "4.0.0-alpha.1",
"@liskhq/lisk-validator": "0.4.0-alpha.0",
"lisk-framework": "0.6.0-alpha.1"
"@liskhq/lisk-cryptography": "^2.5.0",
"@liskhq/lisk-transactions": "^4.0.0",
"@liskhq/lisk-validator": "^0.4.0",
"lisk-framework": "^0.6.0"
}
}
Loading

0 comments on commit d74fad8

Please sign in to comment.