From 481445051ba2df228e617cfdb2e363ba1c67a523 Mon Sep 17 00:00:00 2001 From: shuse2 Date: Thu, 28 Sep 2023 22:52:02 +0200 Subject: [PATCH] :arrow_up: Bump version --- commander/package.json | 24 ++++++------ .../templates/init/package-template.json | 8 ++-- .../templates/init_plugin/package.json | 2 +- elements/lisk-api-client/package.json | 10 ++--- elements/lisk-bft/package.json | 12 +++--- elements/lisk-chain/package.json | 14 +++---- elements/lisk-client/package.json | 18 ++++----- elements/lisk-codec/package.json | 6 +-- elements/lisk-cryptography/package.json | 2 +- elements/lisk-elements/package.json | 28 +++++++------- elements/lisk-genesis/package.json | 12 +++--- elements/lisk-p2p/package.json | 8 ++-- elements/lisk-passphrase/package.json | 2 +- elements/lisk-transaction-pool/package.json | 6 +-- elements/lisk-transactions/package.json | 8 ++-- elements/lisk-tree/package.json | 6 +-- elements/lisk-utils/package.json | 2 +- elements/lisk-validator/package.json | 4 +- .../package.json | 10 ++--- .../lisk-framework-faucet-plugin/package.json | 16 ++++---- .../lisk-framework-forger-plugin/package.json | 20 +++++----- .../package.json | 14 +++---- .../package.json | 14 +++---- .../package.json | 18 ++++----- framework/package.json | 28 +++++++------- protocol-specs/package.json | 8 ++-- sdk/package.json | 38 +++++++++---------- yarn.lock | 24 ++++++------ 28 files changed, 181 insertions(+), 181 deletions(-) diff --git a/commander/package.json b/commander/package.json index b744a736d05..f17605478f5 100644 --- a/commander/package.json +++ b/commander/package.json @@ -1,6 +1,6 @@ { "name": "lisk-commander", - "version": "5.2.0-rc.0", + "version": "5.2.0", "description": "A command line interface for Lisk", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -91,17 +91,17 @@ "/docs" ], "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-client": "^5.3.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-client": "^5.3.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-genesis": "^0.3.0-rc.0", - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-genesis": "^0.3.0", + "@liskhq/lisk-passphrase": "^3.2.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "@oclif/command": "1.8.16", "@oclif/config": "1.18.3", "@oclif/errors": "1.3.5", @@ -114,7 +114,7 @@ "cli-table3": "0.6.0", "fs-extra": "9.1.0", "inquirer": "8.0.0", - "lisk-framework": "^0.10.0-rc.0", + "lisk-framework": "^0.10.0", "listr": "0.14.3", "progress": "2.0.3", "semver": "7.3.5", diff --git a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json index 65151d58e15..8a474aae3ac 100644 --- a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json +++ b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json @@ -98,15 +98,15 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.2.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.2.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.2.0", "@oclif/command": "1.8.16", "@oclif/plugin-autocomplete": "1.2.0", "@oclif/plugin-help": "5.1.12", "fs-extra": "9.1.0", "inquirer": "7.3.2", - "lisk-commander": "^5.2.0-rc.0", - "lisk-sdk": "^5.3.0-rc.0", + "lisk-commander": "^5.2.0", + "lisk-sdk": "^5.3.0", "tar": "6.0.2", "tslib": "1.13.0", "axios": "0.21.1" diff --git a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json index b2ace81c253..c2dba0ab990 100644 --- a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json +++ b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json @@ -29,7 +29,7 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "lisk-sdk": "^5.3.0-rc.0" + "lisk-sdk": "^5.3.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-api-client/package.json b/elements/lisk-api-client/package.json index 1a348113f9d..9a5f184ca7d 100644 --- a/elements/lisk-api-client/package.json +++ b/elements/lisk-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-api-client", - "version": "5.2.0-rc.0", + "version": "5.2.0", "description": "An API client for the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,16 +36,16 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-transactions": "^5.3.0", "isomorphic-ws": "4.0.1", "pm2-axon": "4.0.1", "pm2-axon-rpc": "0.7.1", "ws": "7.5.7" }, "devDependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", "@types/jest": "26.0.21", "@types/jest-when": "2.7.2", "@types/node": "18.15.3", diff --git a/elements/lisk-bft/package.json b/elements/lisk-bft/package.json index c448bbe9db2..943ecb13028 100644 --- a/elements/lisk-bft/package.json +++ b/elements/lisk-bft/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-bft", - "version": "0.4.0-rc.0", + "version": "0.4.0", "description": "Byzantine fault tolerance implementation according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,11 +36,11 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "@types/node": "18.15.3", "debug": "4.3.4" }, diff --git a/elements/lisk-chain/package.json b/elements/lisk-chain/package.json index 6245a257d1c..98833356cf7 100644 --- a/elements/lisk-chain/package.json +++ b/elements/lisk-chain/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-chain", - "version": "0.4.0-rc.0", + "version": "0.4.0", "description": "Blocks and state management implementation that are used for block processing according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,16 +36,16 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-tree": "^0.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-tree": "^0.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "debug": "4.3.4" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", + "@liskhq/lisk-passphrase": "^3.2.0", "@types/debug": "4.1.7", "@types/faker": "4.1.10", "@types/jest": "26.0.21", diff --git a/elements/lisk-client/package.json b/elements/lisk-client/package.json index 3831b539188..c900092fdd1 100644 --- a/elements/lisk-client/package.json +++ b/elements/lisk-client/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-client", - "version": "5.3.0-rc.0", + "version": "5.3.0", "description": "A default set of Elements for use by clients of the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -55,14 +55,14 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-tree": "^0.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-passphrase": "^3.2.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-tree": "^0.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "buffer": "6.0.3" }, "devDependencies": { diff --git a/elements/lisk-codec/package.json b/elements/lisk-codec/package.json index c1e5b9eb7c2..3bf5594db6e 100644 --- a/elements/lisk-codec/package.json +++ b/elements/lisk-codec/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-codec", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "Implementation of decoder and encoder using Lisk JSON schema according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,8 +36,8 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0" + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-cryptography/package.json b/elements/lisk-cryptography/package.json index 3b9f0572302..8c72b213c06 100644 --- a/elements/lisk-cryptography/package.json +++ b/elements/lisk-cryptography/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-cryptography", - "version": "3.3.0-rc.0", + "version": "3.3.0", "description": "General cryptographic functions for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", diff --git a/elements/lisk-elements/package.json b/elements/lisk-elements/package.json index 0f4f314cb97..76b37137476 100644 --- a/elements/lisk-elements/package.json +++ b/elements/lisk-elements/package.json @@ -1,6 +1,6 @@ { "name": "lisk-elements", - "version": "5.3.0-rc.0", + "version": "5.3.0", "description": "Libraries to support building blockchain applications according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,19 +36,19 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-bft": "^0.4.0-rc.0", - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-genesis": "^0.3.0-rc.0", - "@liskhq/lisk-p2p": "^0.8.0-rc.0", - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.6.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-tree": "^0.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0" + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-bft": "^0.4.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-genesis": "^0.3.0", + "@liskhq/lisk-p2p": "^0.8.0", + "@liskhq/lisk-passphrase": "^3.2.0", + "@liskhq/lisk-transaction-pool": "^0.6.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-tree": "^0.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-genesis/package.json b/elements/lisk-genesis/package.json index 6519e637ad5..be67a532432 100644 --- a/elements/lisk-genesis/package.json +++ b/elements/lisk-genesis/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-genesis", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "Library containing genesis block creation functions according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,11 +36,11 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "lodash.clonedeep": "4.5.0" }, "devDependencies": { diff --git a/elements/lisk-p2p/package.json b/elements/lisk-p2p/package.json index 37a0bf2c69c..7f5ec9a695d 100644 --- a/elements/lisk-p2p/package.json +++ b/elements/lisk-p2p/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-p2p", - "version": "0.8.0-rc.0", + "version": "0.8.0", "description": "Unstructured P2P library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -42,9 +42,9 @@ "disableLocalIPs": "./scripts/disableTestLocalIPs.sh 2 19" }, "dependencies": { - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-validator": "^0.7.0", "lodash.shuffle": "4.2.0", "semver": "7.3.5", "socketcluster-client": "14.3.1", diff --git a/elements/lisk-passphrase/package.json b/elements/lisk-passphrase/package.json index 0fa41a7752d..6994fbd7807 100644 --- a/elements/lisk-passphrase/package.json +++ b/elements/lisk-passphrase/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-passphrase", - "version": "3.2.0-rc.0", + "version": "3.2.0", "description": "Mnemonic passphrase helpers for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", diff --git a/elements/lisk-transaction-pool/package.json b/elements/lisk-transaction-pool/package.json index 2f267434245..6569379fe83 100644 --- a/elements/lisk-transaction-pool/package.json +++ b/elements/lisk-transaction-pool/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-transaction-pool", - "version": "0.6.0-rc.0", + "version": "0.6.0", "description": "Transaction pool library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -37,8 +37,8 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0", "debug": "4.3.4" }, "devDependencies": { diff --git a/elements/lisk-transactions/package.json b/elements/lisk-transactions/package.json index 98f55660e09..7be8e5bd80d 100644 --- a/elements/lisk-transactions/package.json +++ b/elements/lisk-transactions/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-transactions", - "version": "5.3.0-rc.0", + "version": "5.3.0", "description": "Utility functions related to transactions according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,9 +36,9 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0" + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-validator": "^0.7.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-tree/package.json b/elements/lisk-tree/package.json index 575885bb549..80875258fa1 100644 --- a/elements/lisk-tree/package.json +++ b/elements/lisk-tree/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-tree", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "Library containing Merkle tree implementations for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,8 +36,8 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0" + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-utils/package.json b/elements/lisk-utils/package.json index 9027aae3dc3..e8c50467b87 100644 --- a/elements/lisk-utils/package.json +++ b/elements/lisk-utils/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-utils", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "Library containing generic utility functions for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", diff --git a/elements/lisk-validator/package.json b/elements/lisk-validator/package.json index 8a60275e67f..4cd784ff626 100644 --- a/elements/lisk-validator/package.json +++ b/elements/lisk-validator/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-validator", - "version": "0.7.0-rc.0", + "version": "0.7.0", "description": "Validation library according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -37,7 +37,7 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-cryptography": "^3.3.0", "ajv": "8.1.0", "ajv-formats": "2.0.2", "debug": "4.3.4", diff --git a/framework-plugins/lisk-framework-dashboard-plugin/package.json b/framework-plugins/lisk-framework-dashboard-plugin/package.json index bd9dd54fb88..1559c6cca7a 100644 --- a/framework-plugins/lisk-framework-dashboard-plugin/package.json +++ b/framework-plugins/lisk-framework-dashboard-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-dashboard-plugin", - "version": "0.2.0-rc.0", + "version": "0.2.0", "description": "A plugin for interacting with a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,12 +40,12 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-client": "^5.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", + "@liskhq/lisk-client": "^5.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0", "express": "4.17.3", "json-format-highlight": "1.0.4", - "lisk-framework": "^0.10.0-rc.0", + "lisk-framework": "^0.10.0", "react": "^17.0.1", "react-dom": "^17.0.1", "react-router-dom": "^5.2.0", diff --git a/framework-plugins/lisk-framework-faucet-plugin/package.json b/framework-plugins/lisk-framework-faucet-plugin/package.json index f72c6c33bf8..548debe8978 100644 --- a/framework-plugins/lisk-framework-faucet-plugin/package.json +++ b/framework-plugins/lisk-framework-faucet-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-faucet-plugin", - "version": "0.2.0-rc.0", + "version": "0.2.0", "description": "A plugin for distributing testnet tokens from a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -41,15 +41,15 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-client": "^5.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-client": "^5.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "axios": "1.3.2", "express": "4.17.3", - "lisk-framework": "^0.10.0-rc.0", + "lisk-framework": "^0.10.0", "react": "^17.0.1", "react-dom": "^17.0.1", "react-router-dom": "^5.2.0" diff --git a/framework-plugins/lisk-framework-forger-plugin/package.json b/framework-plugins/lisk-framework-forger-plugin/package.json index 398305254f6..0bf78daa816 100644 --- a/framework-plugins/lisk-framework-forger-plugin/package.json +++ b/framework-plugins/lisk-framework-forger-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-forger-plugin", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "A plugin for lisk-framework that monitors configured delegates forging activity and voters information.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -38,13 +38,13 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "axios": "1.3.2", "cors": "2.8.5", "debug": "4.3.4", @@ -52,11 +52,11 @@ "express-rate-limit": "5.1.3", "fs-extra": "9.1.0", "ip": "1.1.5", - "lisk-framework": "^0.10.0-rc.0" + "lisk-framework": "^0.10.0" }, "devDependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-genesis": "^0.3.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-genesis": "^0.3.0", "@types/cors": "2.8.6", "@types/debug": "4.1.7", "@types/express": "4.17.6", diff --git a/framework-plugins/lisk-framework-http-api-plugin/package.json b/framework-plugins/lisk-framework-http-api-plugin/package.json index 122d5f0a703..0ac5e741b0a 100644 --- a/framework-plugins/lisk-framework-http-api-plugin/package.json +++ b/framework-plugins/lisk-framework-http-api-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-http-api-plugin", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "A plugin for lisk-framework that provides basic HTTP API endpoints to get running node information.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -37,18 +37,18 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "cors": "2.8.5", "express": "4.17.3", "express-rate-limit": "5.1.3", "ip": "1.1.5", - "lisk-framework": "^0.10.0-rc.0" + "lisk-framework": "^0.10.0" }, "devDependencies": { - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-transactions": "^5.3.0", "@types/cors": "2.8.6", "@types/express": "4.17.6", "@types/express-rate-limit": "5.0.0", diff --git a/framework-plugins/lisk-framework-monitor-plugin/package.json b/framework-plugins/lisk-framework-monitor-plugin/package.json index e315df05678..2f37e9620b1 100644 --- a/framework-plugins/lisk-framework-monitor-plugin/package.json +++ b/framework-plugins/lisk-framework-monitor-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-monitor-plugin", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "A plugin for lisk-framework that provides network statistics of the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -37,16 +37,16 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "cors": "2.8.5", "express": "4.17.3", "express-rate-limit": "5.1.3", "ip": "1.1.5", - "lisk-framework": "^0.10.0-rc.0" + "lisk-framework": "^0.10.0" }, "devDependencies": { "@types/cors": "2.8.6", diff --git a/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json b/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json index 0be5a556fa4..2ebcfd2afbd 100644 --- a/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json +++ b/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-report-misbehavior-plugin", - "version": "0.3.0-rc.0", + "version": "0.3.0", "description": "A plugin for lisk-framework that provides automatic detection of delegate misbehavior and sends a reportDelegateMisbehaviorTransaction to the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -38,17 +38,17 @@ "prepublishOnly": "npm run lint && npm test && npm run build && npm run build:check" }, "dependencies": { - "@liskhq/lisk-bft": "^0.4.0-rc.0", - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-bft": "^0.4.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "debug": "4.3.4", "fs-extra": "9.1.0", - "lisk-framework": "^0.10.0-rc.0" + "lisk-framework": "^0.10.0" }, "devDependencies": { "@types/cors": "2.8.6", diff --git a/framework/package.json b/framework/package.json index 61dfbc81fab..218dc4867cf 100644 --- a/framework/package.json +++ b/framework/package.json @@ -1,6 +1,6 @@ { "name": "lisk-framework", - "version": "0.10.0-rc.0", + "version": "0.10.0", "description": "Framework to build blockchain applications according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,19 +40,19 @@ "test:functional": "jest --config=./test/functional/jest.config.js --runInBand" }, "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-bft": "^0.4.0-rc.0", - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-bft": "^0.4.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-genesis": "^0.3.0-rc.0", - "@liskhq/lisk-p2p": "^0.8.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.6.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-tree": "^0.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", + "@liskhq/lisk-genesis": "^0.3.0", + "@liskhq/lisk-p2p": "^0.8.0", + "@liskhq/lisk-transaction-pool": "^0.6.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-tree": "^0.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", "bunyan": "1.8.15", "debug": "4.3.4", "eventemitter2": "6.4.5", @@ -64,7 +64,7 @@ "ws": "7.5.7" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", + "@liskhq/lisk-passphrase": "^3.2.0", "@types/bunyan": "1.8.6", "@types/jest": "26.0.21", "@types/jest-when": "2.7.2", diff --git a/protocol-specs/package.json b/protocol-specs/package.json index b5017858cf7..56a97ca662d 100644 --- a/protocol-specs/package.json +++ b/protocol-specs/package.json @@ -19,10 +19,10 @@ }, "dependencies": { "@liskhq/bignum": "1.3.1", - "@liskhq/lisk-codec": "0.3.0-rc.0", - "@liskhq/lisk-cryptography": "3.3.0-rc.0", - "@liskhq/lisk-passphrase": "3.2.0-rc.0", - "@liskhq/lisk-validator": "0.7.0-rc.0", + "@liskhq/lisk-codec": "0.3.0", + "@liskhq/lisk-cryptography": "3.3.0", + "@liskhq/lisk-passphrase": "3.2.0", + "@liskhq/lisk-validator": "0.7.0", "protobufjs": "6.9.0" }, "devDependencies": { diff --git a/sdk/package.json b/sdk/package.json index c73c5f81f68..b6af2368dc5 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "lisk-sdk", - "version": "5.3.0-rc.0", + "version": "5.3.0", "description": "Official SDK for the Lisk blockchain application platform", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -29,25 +29,25 @@ "build": "tsc" }, "dependencies": { - "@liskhq/lisk-api-client": "^5.2.0-rc.0", - "@liskhq/lisk-bft": "^0.4.0-rc.0", - "@liskhq/lisk-chain": "^0.4.0-rc.0", - "@liskhq/lisk-codec": "^0.3.0-rc.0", - "@liskhq/lisk-cryptography": "^3.3.0-rc.0", + "@liskhq/lisk-api-client": "^5.2.0", + "@liskhq/lisk-bft": "^0.4.0", + "@liskhq/lisk-chain": "^0.4.0", + "@liskhq/lisk-codec": "^0.3.0", + "@liskhq/lisk-cryptography": "^3.3.0", "@liskhq/lisk-db": "^0.3.6", - "@liskhq/lisk-framework-forger-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-http-api-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-genesis": "^0.3.0-rc.0", - "@liskhq/lisk-p2p": "^0.8.0-rc.0", - "@liskhq/lisk-passphrase": "^3.2.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.6.0-rc.0", - "@liskhq/lisk-transactions": "^5.3.0-rc.0", - "@liskhq/lisk-tree": "^0.3.0-rc.0", - "@liskhq/lisk-utils": "^0.3.0-rc.0", - "@liskhq/lisk-validator": "^0.7.0-rc.0", - "lisk-framework": "^0.10.0-rc.0" + "@liskhq/lisk-framework-forger-plugin": "^0.3.0", + "@liskhq/lisk-framework-http-api-plugin": "^0.3.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.3.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.3.0", + "@liskhq/lisk-genesis": "^0.3.0", + "@liskhq/lisk-p2p": "^0.8.0", + "@liskhq/lisk-passphrase": "^3.2.0", + "@liskhq/lisk-transaction-pool": "^0.6.0", + "@liskhq/lisk-transactions": "^5.3.0", + "@liskhq/lisk-tree": "^0.3.0", + "@liskhq/lisk-utils": "^0.3.0", + "@liskhq/lisk-validator": "^0.7.0", + "lisk-framework": "^0.10.0" }, "devDependencies": { "eslint": "7.22.0", diff --git a/yarn.lock b/yarn.lock index 1ccd44c92de..cd292b061cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -16831,32 +16831,32 @@ semver@7.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== -semver@7.3.4, semver@7.x, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2: +semver@7.3.4: version "7.3.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== dependencies: lru-cache "^6.0.0" -semver@7.3.5, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5: +semver@7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== dependencies: lru-cache "^6.0.0" +semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" + semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.0.0, semver@^7.3.7: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" - send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -19324,9 +19324,9 @@ widest-line@^3.1.0: string-width "^4.0.0" word-wrap@^1.2.3, word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity "sha1-0sRcbdT7zmIaZvE2y+Mor9BBCzQ= sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" wordwrap@^1.0.0: version "1.0.0"