From 87d6b877b35c5bf9d393e6720cd80bfcd4f5a08a Mon Sep 17 00:00:00 2001 From: shuse2 Date: Tue, 7 Nov 2023 08:15:01 +0100 Subject: [PATCH] :arrow_up: Bump version --- commander/oclif.manifest.json | 683 ------------------ commander/package.json | 22 +- .../templates/init/package-template.json | 16 +- .../templates/init_plugin/package.json | 2 +- elements/lisk-api-client/package.json | 12 +- elements/lisk-chain/package.json | 14 +- elements/lisk-client/package.json | 18 +- elements/lisk-codec/package.json | 8 +- elements/lisk-cryptography/package.json | 4 +- elements/lisk-elements/package.json | 24 +- 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 +- .../interop/pos-mainchain-fast/package.json | 16 +- .../pos-sidechain-example-one/package.json | 16 +- .../pos-sidechain-example-two/package.json | 16 +- examples/pos-mainchain/package.json | 14 +- .../package.json | 4 +- .../package.json | 6 +- .../lisk-framework-faucet-plugin/package.json | 16 +- .../lisk-framework-forger-plugin/package.json | 6 +- .../package.json | 4 +- .../package.json | 6 +- framework/package.json | 24 +- protocol-specs/package.json | 8 +- sdk/package.json | 26 +- 30 files changed, 159 insertions(+), 842 deletions(-) delete mode 100644 commander/oclif.manifest.json diff --git a/commander/oclif.manifest.json b/commander/oclif.manifest.json deleted file mode 100644 index dcca4a28e1..0000000000 --- a/commander/oclif.manifest.json +++ /dev/null @@ -1,683 +0,0 @@ -{ - "version": "6.0.0-rc.3", - "commands": { - "console": { - "id": "console", - "description": "Lisk interactive REPL session to run commands.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "console", - "console --api-ws=ws://localhost:8080", - "console --api-ipc=/path/to/server" - ], - "flags": { - "api-ipc": { - "name": "api-ipc", - "type": "option", - "description": "Enable api-client with IPC communication.", - "multiple": false, - "exclusive": ["api-ws"] - }, - "api-ws": { - "name": "api-ws", - "type": "option", - "description": "Enable api-client with Websocket communication.", - "multiple": false, - "exclusive": ["api-ipc"] - } - }, - "args": [] - }, - "hash-onion": { - "id": "hash-onion", - "description": "Create hash onions to be used by the forger.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "hash-onion --count=1000000 --distance=2000 --pretty", - "hash-onion --count=1000000 --distance=2000 --output ~/my_onion.json" - ], - "flags": { - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "Output file path", - "multiple": false - }, - "count": { - "name": "count", - "type": "option", - "char": "c", - "description": "Total number of hashes to produce", - "multiple": false, - "default": 1000000 - }, - "distance": { - "name": "distance", - "type": "option", - "char": "d", - "description": "Distance between each hash", - "multiple": false, - "default": 1000 - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed.", - "allowNo": false - } - }, - "args": [] - }, - "init": { - "id": "init", - "description": "Bootstrap a blockchain application using Lisk SDK.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "init", - "init --template lisk-ts", - "init --template @some-global-npm-package", - "init /project/path", - "init /project/path --template lisk-ts" - ], - "flags": { - "template": { - "name": "template", - "type": "option", - "char": "t", - "description": "Template to bootstrap the application. It will read from `.liskrc.json` or use `lisk-ts` if not found.", - "multiple": false - }, - "registry": { - "name": "registry", - "type": "option", - "description": "URL of a registry to download dependencies from.", - "multiple": false - } - }, - "args": [ - { - "name": "projectPath", - "description": "Path to create the project.", - "default": "/Users/ishan/repos/lisk-sdk/commander" - } - ] - }, - "endpoint:invoke": { - "id": "endpoint:invoke", - "description": "Invokes the provided endpoint.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "endpoint:invoke {endpoint} {parameters}", - "endpoint:invoke --data-path --file", - "endpoint:invoke generator_getAllKeys", - "endpoint:invoke consensus_getBFTParameters '{\"height\": 2}' -d ~/.lisk/pos-mainchain --pretty", - "endpoint:invoke consensus_getBFTParameters -f ./input.json" - ], - "flags": { - "data-path": { - "name": "data-path", - "type": "option", - "char": "d", - "description": "Directory path to specify where node data is stored. Environment variable \"LISK_DATA_PATH\" can also be used.", - "multiple": false - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed.", - "allowNo": false - }, - "file": { - "name": "file", - "type": "option", - "char": "f", - "description": "Input file.", - "multiple": false - } - }, - "args": [ - { "name": "endpoint", "description": "Endpoint to invoke", "required": true }, - { "name": "params", "description": "Endpoint parameters (Optional)", "required": false } - ] - }, - "generate:command": { - "id": "generate:command", - "description": "Creates an command skeleton for the given module name, name and id.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "generate:command moduleName commandName commandID", - "generate:command nft transfer 1" - ], - "flags": { - "template": { - "name": "template", - "type": "option", - "char": "t", - "description": "Template to bootstrap the application. It will read from `.liskrc.json` or use `lisk-ts` if not found.", - "multiple": false - } - }, - "args": [ - { "name": "moduleName", "description": "Module name.", "required": true }, - { "name": "commandName", "description": "Asset name.", "required": true } - ] - }, - "generate:module": { - "id": "generate:module", - "description": "Creates a module skeleton for the given name.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": ["generate:module nft"], - "flags": { - "template": { - "name": "template", - "type": "option", - "char": "t", - "description": "Template to bootstrap the application. It will read from `.liskrc.json` or use `lisk-ts` if not found.", - "multiple": false - } - }, - "args": [{ "name": "moduleName", "description": "Module name.", "required": true }] - }, - "generate:plugin": { - "id": "generate:plugin", - "description": "Creates custom plugin.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "generate:plugin myPlugin", - "generate:plugin myPlugin --standalone --output ./my_plugin" - ], - "flags": { - "template": { - "name": "template", - "type": "option", - "char": "t", - "description": "Template to bootstrap the application. It will read from `.liskrc.json` or use `lisk-ts` if not found.", - "multiple": false - }, - "standalone": { - "name": "standalone", - "type": "boolean", - "description": "Create a standalone plugin package.", - "allowNo": false - }, - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "Path to create the plugin.", - "multiple": false, - "dependsOn": ["standalone"] - }, - "registry": { - "name": "registry", - "type": "option", - "description": "URL of a registry to download dependencies from.", - "multiple": false, - "dependsOn": ["standalone"] - } - }, - "args": [{ "name": "name", "description": "Name of the plugin.", "required": true }] - }, - "keys:create": { - "id": "keys:create", - "description": "Return keys corresponding to the given passphrase.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "keys:create", - "keys:create --passphrase your-passphrase", - "keys:create --passphrase your-passphrase --no-encrypt", - "keys:create --passphrase your-passphrase --password your-password", - "keys:create --passphrase your-passphrase --password your-password --count 2", - "keys:create --passphrase your-passphrase --no-encrypt --count 2 --offset 1", - "keys:create --passphrase your-passphrase --no-encrypt --count 2 --offset 1 --chainid 1", - "keys:create --passphrase your-passphrase --password your-password --count 2 --offset 1 --chainid 1 --output /mypath/keys.json" - ], - "flags": { - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "The output directory. Default will set to current working directory.", - "multiple": false - }, - "passphrase": { - "name": "passphrase", - "type": "option", - "char": "p", - "description": "Specifies a source for your secret passphrase. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --passphrase='my secret passphrase' (should only be used where security is not important)\n", - "multiple": false - }, - "no-encrypt": { - "name": "no-encrypt", - "type": "boolean", - "char": "n", - "description": "No encrypted message object to be created", - "allowNo": false - }, - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - }, - "count": { - "name": "count", - "type": "option", - "char": "c", - "description": "Number of keys to create", - "multiple": false, - "default": 1 - }, - "offset": { - "name": "offset", - "type": "option", - "char": "f", - "description": "Offset for the key derivation path", - "multiple": false, - "default": 0 - }, - "chainid": { - "name": "chainid", - "type": "option", - "char": "i", - "description": "Chain id", - "multiple": false, - "default": 0 - }, - "add-legacy": { - "name": "add-legacy", - "type": "boolean", - "description": "Add legacy key derivation path to the result", - "allowNo": false - } - }, - "args": [] - }, - "keys:encrypt": { - "id": "keys:encrypt", - "description": "Encrypt keys from a file and overwrite the file", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "keys:encrypt --file-path ./my/path/keys.json", - "keys:encrypt --file-path ./my/path/keys.json --password mypass" - ], - "flags": { - "file-path": { - "name": "file-path", - "type": "option", - "char": "f", - "description": "Path of the file to encrypt from", - "required": true, - "multiple": false - }, - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - } - }, - "args": [] - }, - "keys:export": { - "id": "keys:export", - "description": "Export to .", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "keys:export --output /mypath/keys.json", - "keys:export --output /mypath/keys.json --data-path ./data " - ], - "flags": { - "data-path": { - "name": "data-path", - "type": "option", - "char": "d", - "description": "Directory path to specify where node data is stored. Environment variable \"LISK_DATA_PATH\" can also be used.", - "multiple": false - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed.", - "allowNo": false - }, - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "The output directory. Default will set to current working directory.", - "required": true, - "multiple": false - } - }, - "args": [] - }, - "keys:import": { - "id": "keys:import", - "description": "Import from .", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "keys:import --file-path ./my/path/keys.json", - "keys:import --file-path ./my/path/keys.json --data-path ./data " - ], - "flags": { - "data-path": { - "name": "data-path", - "type": "option", - "char": "d", - "description": "Directory path to specify where node data is stored. Environment variable \"LISK_DATA_PATH\" can also be used.", - "multiple": false - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed.", - "allowNo": false - }, - "file-path": { - "name": "file-path", - "type": "option", - "char": "f", - "description": "Path of the file to import from", - "required": true, - "multiple": false - } - }, - "args": [] - }, - "message:decrypt": { - "id": "message:decrypt", - "description": "\n\tDecrypts a previously encrypted message using your the password used to encrypt.\n\t", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": ["message:decrypt "], - "flags": { - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - }, - "message": { - "name": "message", - "type": "option", - "char": "m", - "description": "Specifies a source for providing a message to the command. If a string is provided directly as an argument, this option will be ignored. The message must be provided via an argument or via this option. Sources must be one of `file` or `stdin`. In the case of `file`, a corresponding identifier must also be provided.\n\tNote: if both secret passphrase and message are passed via stdin, the passphrase must be the first line.\n\tExamples:\n\t- --message=file:/path/to/my/message.txt\n\t- --message=\"hello world\"\n", - "multiple": false - } - }, - "args": [{ "name": "message", "description": "Encrypted message." }] - }, - "message:encrypt": { - "id": "message:encrypt", - "description": "\n\tEncrypts a message with a password provided.\n\t", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": ["message:encrypt \"Hello world\""], - "flags": { - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - }, - "message": { - "name": "message", - "type": "option", - "char": "m", - "description": "Specifies a source for providing a message to the command. If a string is provided directly as an argument, this option will be ignored. The message must be provided via an argument or via this option. Sources must be one of `file` or `stdin`. In the case of `file`, a corresponding identifier must also be provided.\n\tNote: if both secret passphrase and message are passed via stdin, the passphrase must be the first line.\n\tExamples:\n\t- --message=file:/path/to/my/message.txt\n\t- --message=\"hello world\"\n", - "multiple": false - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed.", - "allowNo": false - }, - "stringify": { - "name": "stringify", - "type": "boolean", - "char": "s", - "description": "Display encrypted message in stringified format", - "allowNo": false - } - }, - "args": [{ "name": "message", "description": "Message to encrypt." }] - }, - "message:sign": { - "id": "message:sign", - "description": "\n\tSigns a message using your secret passphrase.\n\t", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": ["message:sign \"Hello world\""], - "flags": { - "json": { - "name": "json", - "type": "boolean", - "char": "j", - "description": "Prints output in JSON format. You can change the default behavior in your config.json file.", - "allowNo": true - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed. Has no effect if the output is set to table. You can change the default behavior in your config.json file.", - "allowNo": true - }, - "passphrase": { - "name": "passphrase", - "type": "option", - "char": "p", - "description": "Specifies a source for your secret passphrase. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --passphrase='my secret passphrase' (should only be used where security is not important)\n", - "multiple": false - }, - "message": { - "name": "message", - "type": "option", - "char": "m", - "description": "Specifies a source for providing a message to the command. If a string is provided directly as an argument, this option will be ignored. The message must be provided via an argument or via this option. Sources must be one of `file` or `stdin`. In the case of `file`, a corresponding identifier must also be provided.\n\tNote: if both secret passphrase and message are passed via stdin, the passphrase must be the first line.\n\tExamples:\n\t- --message=file:/path/to/my/message.txt\n\t- --message=\"hello world\"\n", - "multiple": false - } - }, - "args": [{ "name": "message", "description": "Message to sign." }] - }, - "message:verify": { - "id": "message:verify", - "description": "\n\tVerifies a signature for a message using the signer’s public key.\n\t", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "message:verify 647aac1e2df8a5c870499d7ddc82236b1e10936977537a3844a6b05ea33f9ef6 2a3ca127efcf7b2bf62ac8c3b1f5acf6997cab62ba9fde3567d188edcbacbc5dc8177fb88d03a8691ce03348f569b121bca9e7a3c43bf5c056382f35ff843c09 \"Hello world\"" - ], - "flags": { - "json": { - "name": "json", - "type": "boolean", - "char": "j", - "description": "Prints output in JSON format. You can change the default behavior in your config.json file.", - "allowNo": true - }, - "pretty": { - "name": "pretty", - "type": "boolean", - "description": "Prints JSON in pretty format rather than condensed. Has no effect if the output is set to table. You can change the default behavior in your config.json file.", - "allowNo": true - }, - "message": { - "name": "message", - "type": "option", - "char": "m", - "description": "Specifies a source for providing a message to the command. If a string is provided directly as an argument, this option will be ignored. The message must be provided via an argument or via this option. Sources must be one of `file` or `stdin`. In the case of `file`, a corresponding identifier must also be provided.\n\tNote: if both secret passphrase and message are passed via stdin, the passphrase must be the first line.\n\tExamples:\n\t- --message=file:/path/to/my/message.txt\n\t- --message=\"hello world\"\n", - "multiple": false - } - }, - "args": [ - { - "name": "publicKey", - "description": "Public key of the signer of the message.", - "required": true - }, - { "name": "signature", "description": "Signature to verify.", "required": true }, - { "name": "message", "description": "Message to verify." } - ] - }, - "passphrase:create": { - "id": "passphrase:create", - "description": "Returns a randomly generated 24 words mnemonic passphrase.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": ["passphrase:create", "passphrase:create --output /mypath/passphrase.json"], - "flags": { - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "The output directory. Default will set to current working directory.", - "multiple": false - } - }, - "args": [] - }, - "passphrase:decrypt": { - "id": "passphrase:decrypt", - "description": "Decrypt secret passphrase using the password provided at the time of encryption.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "passphrase:decrypt --file-path ./my/path/output.json", - "passphrase:decrypt --file-path ./my/path/output.json --password your-password" - ], - "flags": { - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - }, - "file-path": { - "name": "file-path", - "type": "option", - "char": "f", - "description": "Path of the file to import from", - "required": true, - "multiple": false - } - }, - "args": [] - }, - "passphrase:encrypt": { - "id": "passphrase:encrypt", - "description": "Encrypt secret passphrase using password.", - "strict": true, - "pluginName": "lisk-commander", - "pluginAlias": "lisk-commander", - "pluginType": "core", - "aliases": [], - "examples": [ - "passphrase:encrypt", - "passphrase:encrypt --passphrase your-passphrase --output /mypath/keys.json", - "passphrase:encrypt --password your-password", - "passphrase:encrypt --password your-password --passphrase your-passphrase --output /mypath/keys.json", - "passphrase:encrypt --output-public-key --output /mypath/keys.json" - ], - "flags": { - "password": { - "name": "password", - "type": "option", - "char": "w", - "description": "Specifies a source for your secret password. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --password=pass:password123 (should only be used where security is not important)\n", - "multiple": false - }, - "passphrase": { - "name": "passphrase", - "type": "option", - "char": "p", - "description": "Specifies a source for your secret passphrase. Command will prompt you for input if this option is not set.\n\tExamples:\n\t- --passphrase='my secret passphrase' (should only be used where security is not important)\n", - "multiple": false - }, - "output-public-key": { - "name": "output-public-key", - "type": "boolean", - "description": "Includes the public key in the output. This option is provided for the convenience of node operators.", - "allowNo": false - }, - "output": { - "name": "output", - "type": "option", - "char": "o", - "description": "The output directory. Default will set to current working directory.", - "multiple": false - } - }, - "args": [] - } - } -} diff --git a/commander/package.json b/commander/package.json index 5d095484fe..0e0461ec35 100644 --- a/commander/package.json +++ b/commander/package.json @@ -1,6 +1,6 @@ { "name": "lisk-commander", - "version": "6.0.0-rc.6", + "version": "6.0.0", "description": "A command line interface for Lisk", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -101,16 +101,16 @@ "/docs" ], "dependencies": { - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-chain": "^0.5.0-rc.4", - "@liskhq/lisk-client": "^6.0.0-rc.4", - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-chain": "^0.5.0", + "@liskhq/lisk-client": "^6.0.0", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", "@liskhq/lisk-db": "0.3.10", - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-passphrase": "^4.0.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,7 +121,7 @@ "cli-table3": "0.6.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-framework": "^0.11.0-rc.5", + "lisk-framework": "^0.11.0", "listr": "0.14.3", "progress": "2.0.3", "semver": "7.5.2", 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 12794990e7..1be130bc60 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 @@ -85,12 +85,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "0.3.0-rc.5", - "@liskhq/lisk-framework-faucet-plugin": "0.3.0-rc.5", - "@liskhq/lisk-framework-monitor-plugin": "0.4.0-rc.5", - "@liskhq/lisk-framework-forger-plugin": "0.4.0-rc.5", - "@liskhq/lisk-framework-report-misbehavior-plugin": "0.4.0-rc.5", - "@liskhq/lisk-framework-chain-connector-plugin": "0.1.0-rc.5", + "@liskhq/lisk-framework-dashboard-plugin": "0.3.0", + "@liskhq/lisk-framework-faucet-plugin": "0.3.0", + "@liskhq/lisk-framework-monitor-plugin": "0.4.0", + "@liskhq/lisk-framework-forger-plugin": "0.4.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "0.4.0", + "@liskhq/lisk-framework-chain-connector-plugin": "0.1.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -98,8 +98,8 @@ "axios": "0.21.2", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "6.0.0-rc.6", - "lisk-sdk": "6.0.0-rc.5", + "lisk-commander": "6.0.0", + "lisk-sdk": "6.0.0", "tar": "6.1.11", "tslib": "2.4.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 6b7ba03987..bd19870434 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 @@ -28,7 +28,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "lisk-sdk": "^6.0.0-rc.5" + "lisk-sdk": "^6.0.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-api-client/package.json b/elements/lisk-api-client/package.json index 5cf49fd4ca..663a023946 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": "6.0.0-rc.4", + "version": "6.0.0", "description": "An API client for the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,16 +35,16 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-validator": "^0.8.0", "isomorphic-ws": "4.0.1", "ws": "8.11.0", "zeromq": "6.0.0-beta.6" }, "devDependencies": { - "@liskhq/lisk-chain": "^0.5.0-rc.4", + "@liskhq/lisk-chain": "^0.5.0", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", "@types/node": "18.15.3", diff --git a/elements/lisk-chain/package.json b/elements/lisk-chain/package.json index a4e48b4837..ea74bf5bc0 100644 --- a/elements/lisk-chain/package.json +++ b/elements/lisk-chain/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-chain", - "version": "0.5.0-rc.4", + "version": "0.5.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", @@ -35,16 +35,16 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", "@liskhq/lisk-db": "0.3.10", - "@liskhq/lisk-tree": "^0.4.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-tree": "^0.4.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", "debug": "4.3.4" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", + "@liskhq/lisk-passphrase": "^4.0.0", "@types/debug": "4.1.5", "@types/faker": "4.1.10", "@types/jest": "29.2.3", diff --git a/elements/lisk-client/package.json b/elements/lisk-client/package.json index bfc0623053..617fef8e29 100644 --- a/elements/lisk-client/package.json +++ b/elements/lisk-client/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-client", - "version": "6.0.0-rc.4", + "version": "6.0.0", "description": "A default set of Elements for use by clients of the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -56,14 +56,14 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-tree": "^0.4.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-passphrase": "^4.0.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-tree": "^0.4.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", "buffer": "6.0.3" }, "devDependencies": { diff --git a/elements/lisk-codec/package.json b/elements/lisk-codec/package.json index 24c7184504..6591fcff8f 100644 --- a/elements/lisk-codec/package.json +++ b/elements/lisk-codec/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-codec", - "version": "0.4.0-rc.2", + "version": "0.4.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", @@ -35,9 +35,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2" + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-cryptography/package.json b/elements/lisk-cryptography/package.json index f05e75e53a..3edff071f1 100644 --- a/elements/lisk-cryptography/package.json +++ b/elements/lisk-cryptography/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-cryptography", - "version": "4.0.0-rc.2", + "version": "4.0.0", "description": "General cryptographic functions for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", + "@liskhq/lisk-passphrase": "^4.0.0", "buffer-reverse": "1.0.1", "hash-wasm": "4.9.0", "tweetnacl": "1.0.3" diff --git a/elements/lisk-elements/package.json b/elements/lisk-elements/package.json index cb3a2c0479..3fb86288fb 100644 --- a/elements/lisk-elements/package.json +++ b/elements/lisk-elements/package.json @@ -1,6 +1,6 @@ { "name": "lisk-elements", - "version": "6.0.0-rc.4", + "version": "6.0.0", "description": "Elements for building blockchain applications in the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,18 +35,18 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-chain": "^0.5.0-rc.4", - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-chain": "^0.5.0", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", "@liskhq/lisk-db": "0.3.10", - "@liskhq/lisk-p2p": "^0.9.0-rc.2", - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.7.0-rc.2", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-tree": "^0.4.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2" + "@liskhq/lisk-p2p": "^0.9.0", + "@liskhq/lisk-passphrase": "^4.0.0", + "@liskhq/lisk-transaction-pool": "^0.7.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-tree": "^0.4.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-p2p/package.json b/elements/lisk-p2p/package.json index 416e15de25..2bab3d90ea 100644 --- a/elements/lisk-p2p/package.json +++ b/elements/lisk-p2p/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-p2p", - "version": "0.9.0-rc.2", + "version": "0.9.0", "description": "Unstructured P2P library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -41,9 +41,9 @@ "disableLocalIPs": "./scripts/disableTestLocalIPs.sh 2 19" }, "dependencies": { - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-validator": "^0.8.0", "lodash.shuffle": "4.2.0", "semver": "7.5.2", "socketcluster-client": "14.3.1", diff --git a/elements/lisk-passphrase/package.json b/elements/lisk-passphrase/package.json index 0e57697616..27e6b781cb 100644 --- a/elements/lisk-passphrase/package.json +++ b/elements/lisk-passphrase/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-passphrase", - "version": "4.0.0-rc.0", + "version": "4.0.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 3007999d4f..8d4f35ee37 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.7.0-rc.2", + "version": "0.7.0", "description": "Transaction pool library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,8 +36,8 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-utils": "^0.4.0", "debug": "4.3.4" }, "devDependencies": { diff --git a/elements/lisk-transactions/package.json b/elements/lisk-transactions/package.json index 01f821250e..a7d0317ddf 100644 --- a/elements/lisk-transactions/package.json +++ b/elements/lisk-transactions/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-transactions", - "version": "6.0.0-rc.2", + "version": "6.0.0", "description": "Utility functions related to transactions according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,9 +35,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-validator": "^0.8.0-rc.2" + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-validator": "^0.8.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-tree/package.json b/elements/lisk-tree/package.json index 8b804cf9db..af5ff60e15 100644 --- a/elements/lisk-tree/package.json +++ b/elements/lisk-tree/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-tree", - "version": "0.4.0-rc.2", + "version": "0.4.0", "description": "Library containing Merkle tree implementations for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,8 +35,8 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0" + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-utils": "^0.4.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-utils/package.json b/elements/lisk-utils/package.json index 1219e673ab..cfc48d298d 100644 --- a/elements/lisk-utils/package.json +++ b/elements/lisk-utils/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-utils", - "version": "0.4.0-rc.0", + "version": "0.4.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 edcd426baf..d047c5fde3 100644 --- a/elements/lisk-validator/package.json +++ b/elements/lisk-validator/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-validator", - "version": "0.8.0-rc.2", + "version": "0.8.0", "description": "Validation library according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,7 +36,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-cryptography": "^4.0.0", "ajv": "8.1.0", "ajv-formats": "2.1.1", "debug": "4.3.4", diff --git a/examples/interop/pos-mainchain-fast/package.json b/examples/interop/pos-mainchain-fast/package.json index c120194036..9157e0ceb9 100644 --- a/examples/interop/pos-mainchain-fast/package.json +++ b/examples/interop/pos-mainchain-fast/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.3.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.4.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.0.0-rc.0", - "lisk-sdk": "^6.0.0-rc.0", + "lisk-commander": "^6.0.0", + "lisk-sdk": "^6.0.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/interop/pos-sidechain-example-one/package.json b/examples/interop/pos-sidechain-example-one/package.json index b16c841b41..97efdb2214 100644 --- a/examples/interop/pos-sidechain-example-one/package.json +++ b/examples/interop/pos-sidechain-example-one/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.3.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.4.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.0.0-rc.0", - "lisk-sdk": "^6.0.0-rc.0", + "lisk-commander": "^6.0.0", + "lisk-sdk": "^6.0.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/interop/pos-sidechain-example-two/package.json b/examples/interop/pos-sidechain-example-two/package.json index 6e70f660c5..81167a121a 100644 --- a/examples/interop/pos-sidechain-example-two/package.json +++ b/examples/interop/pos-sidechain-example-two/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.3.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.4.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.1.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.0.0-rc.0", - "lisk-sdk": "^6.0.0-rc.0", + "lisk-commander": "^6.0.0", + "lisk-sdk": "^6.0.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/pos-mainchain/package.json b/examples/pos-mainchain/package.json index 1fe23bb076..000ddc1df0 100755 --- a/examples/pos-mainchain/package.json +++ b/examples/pos-mainchain/package.json @@ -114,11 +114,11 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.3.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.3.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.3.0", + "@liskhq/lisk-framework-forger-plugin": "^0.4.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.4.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.4.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -126,8 +126,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.0.0-rc.0", - "lisk-sdk": "^6.0.0-rc.0", + "lisk-commander": "^6.0.0", + "lisk-sdk": "^6.0.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/framework-plugins/lisk-framework-chain-connector-plugin/package.json b/framework-plugins/lisk-framework-chain-connector-plugin/package.json index 809c64596f..a38b341b12 100644 --- a/framework-plugins/lisk-framework-chain-connector-plugin/package.json +++ b/framework-plugins/lisk-framework-chain-connector-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-chain-connector-plugin", - "version": "0.1.0-rc.5", + "version": "0.1.0", "description": "A plugin used by a relayer node to automatically create and submit Cross Chain Transaction by aggregating off-chain information of a chain", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "dependencies": { "debug": "4.3.4", "fs-extra": "11.1.0", - "lisk-sdk": "^6.0.0-rc.5" + "lisk-sdk": "^6.0.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/framework-plugins/lisk-framework-dashboard-plugin/package.json b/framework-plugins/lisk-framework-dashboard-plugin/package.json index 7712fe0b35..87e1ef8df6 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.3.0-rc.5", + "version": "0.3.0", "description": "A plugin for interacting with a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -46,10 +46,10 @@ }, "dependencies": { "@csstools/normalize.css": "12.0.0", - "@liskhq/lisk-client": "^6.0.0-rc.4", + "@liskhq/lisk-client": "^6.0.0", "express": "4.18.2", "json-format-highlight": "1.0.4", - "lisk-sdk": "^6.0.0-rc.5", + "lisk-sdk": "^6.0.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 8658e9b788..eb782ce2e4 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.3.0-rc.5", + "version": "0.3.0", "description": "A plugin for distributing testnet tokens from a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -47,15 +47,15 @@ }, "dependencies": { "@csstools/normalize.css": "12.0.0", - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-client": "^6.0.0-rc.4", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-client": "^6.0.0", + "@liskhq/lisk-cryptography": "^4.0.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", "axios": "1.2.0", "express": "4.18.2", - "lisk-sdk": "^6.0.0-rc.5", + "lisk-sdk": "^6.0.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 ff624cff1b..c7b880d545 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.4.0-rc.5", + "version": "0.4.0", "description": "A plugin for lisk-framework that monitors configured validators forging activity and stakers information.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,10 +40,10 @@ "dependencies": { "debug": "4.3.4", "fs-extra": "11.1.0", - "lisk-sdk": "^6.0.0-rc.5" + "lisk-sdk": "^6.0.0" }, "devDependencies": { - "@liskhq/lisk-api-client": "^6.0.0-rc.4", + "@liskhq/lisk-api-client": "^6.0.0", "@types/debug": "4.1.5", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", diff --git a/framework-plugins/lisk-framework-monitor-plugin/package.json b/framework-plugins/lisk-framework-monitor-plugin/package.json index 8b120f46ae..eb0fffe27d 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.4.0-rc.5", + "version": "0.4.0", "description": "A plugin for lisk-framework that provides network statistics of the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,7 +40,7 @@ "express": "4.18.2", "express-rate-limit": "6.7.0", "ip": "1.1.5", - "lisk-sdk": "^6.0.0-rc.5" + "lisk-sdk": "^6.0.0" }, "devDependencies": { "@types/cors": "2.8.12", diff --git a/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json b/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json index 303dc25ad5..a72fbe4b74 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.4.0-rc.5", + "version": "0.4.0", "description": "A plugin for lisk-framework that provides automatic detection of validator misbehavior and sends a reportValidatorMisbehaviorTransaction to the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -38,9 +38,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-cryptography": "^4.0.0", "fs-extra": "11.1.0", - "lisk-sdk": "^6.0.0-rc.5" + "lisk-sdk": "^6.0.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/framework/package.json b/framework/package.json index cedecb538f..74a5b4cba0 100644 --- a/framework/package.json +++ b/framework/package.json @@ -1,6 +1,6 @@ { "name": "lisk-framework", - "version": "0.11.0-rc.5", + "version": "0.11.0", "description": "Lisk blockchain application platform", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -42,17 +42,17 @@ }, "dependencies": { "@chainsafe/blst": "0.2.9", - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-chain": "^0.5.0-rc.4", - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-chain": "^0.5.0", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", "@liskhq/lisk-db": "0.3.10", - "@liskhq/lisk-p2p": "^0.9.0-rc.2", - "@liskhq/lisk-transaction-pool": "^0.7.0-rc.2", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-tree": "^0.4.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", + "@liskhq/lisk-p2p": "^0.9.0", + "@liskhq/lisk-transaction-pool": "^0.7.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-tree": "^0.4.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", "bunyan": "1.8.15", "debug": "4.3.4", "eventemitter2": "6.4.9", @@ -64,7 +64,7 @@ "zeromq": "6.0.0-beta.6" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", + "@liskhq/lisk-passphrase": "^4.0.0", "@types/bunyan": "1.8.6", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", diff --git a/protocol-specs/package.json b/protocol-specs/package.json index 88e7a031fb..76594a2bf2 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.4.0-rc.2", - "@liskhq/lisk-cryptography": "4.0.0-rc.2", - "@liskhq/lisk-passphrase": "4.0.0-rc.0", - "@liskhq/lisk-validator": "0.8.0-rc.2", + "@liskhq/lisk-codec": "0.4.0", + "@liskhq/lisk-cryptography": "4.0.0", + "@liskhq/lisk-passphrase": "4.0.0", + "@liskhq/lisk-validator": "0.8.0", "protobufjs": "6.11.3" }, "devDependencies": { diff --git a/sdk/package.json b/sdk/package.json index 2057c0c9a9..6cbe455ea4 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "lisk-sdk", - "version": "6.0.0-rc.5", + "version": "6.0.0", "description": "Official SDK for the Lisk blockchain application platform", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -29,19 +29,19 @@ "build": "tsc" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.0.0-rc.4", - "@liskhq/lisk-chain": "^0.5.0-rc.4", - "@liskhq/lisk-codec": "^0.4.0-rc.2", - "@liskhq/lisk-cryptography": "^4.0.0-rc.2", + "@liskhq/lisk-api-client": "^6.0.0", + "@liskhq/lisk-chain": "^0.5.0", + "@liskhq/lisk-codec": "^0.4.0", + "@liskhq/lisk-cryptography": "^4.0.0", "@liskhq/lisk-db": "0.3.10", - "@liskhq/lisk-p2p": "^0.9.0-rc.2", - "@liskhq/lisk-passphrase": "^4.0.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.7.0-rc.2", - "@liskhq/lisk-transactions": "^6.0.0-rc.2", - "@liskhq/lisk-tree": "^0.4.0-rc.2", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.2", - "lisk-framework": "^0.11.0-rc.5" + "@liskhq/lisk-p2p": "^0.9.0", + "@liskhq/lisk-passphrase": "^4.0.0", + "@liskhq/lisk-transaction-pool": "^0.7.0", + "@liskhq/lisk-transactions": "^6.0.0", + "@liskhq/lisk-tree": "^0.4.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.8.0", + "lisk-framework": "^0.11.0" }, "devDependencies": { "eslint": "8.28.0",