From 30ace390e13b91b2de56a701e9ee7fadb12e3fa3 Mon Sep 17 00:00:00 2001 From: William Freudenberger Date: Wed, 22 Sep 2021 17:19:21 +0200 Subject: [PATCH] version 0.26.0 --- Cargo.lock | 18 +++++++++--------- nodes/parachain/Cargo.toml | 2 +- nodes/standalone/Cargo.toml | 2 +- pallets/attestation/Cargo.toml | 10 +++++----- pallets/ctype/Cargo.toml | 2 +- pallets/delegation/Cargo.toml | 6 +++--- pallets/did/Cargo.toml | 6 +++--- runtimes/peregrine/Cargo.toml | 2 +- runtimes/spiritnet/Cargo.toml | 2 +- runtimes/standalone/Cargo.toml | 2 +- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4631a116d..d96853be9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -393,7 +393,7 @@ checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" [[package]] name = "attestation" -version = "0.25.2" +version = "0.26.0" dependencies = [ "ctype", "delegation", @@ -1465,7 +1465,7 @@ dependencies = [ [[package]] name = "ctype" -version = "0.25.2" +version = "0.26.0" dependencies = [ "frame-benchmarking", "frame-support", @@ -1876,7 +1876,7 @@ dependencies = [ [[package]] name = "delegation" -version = "0.25.2" +version = "0.26.0" dependencies = [ "bitflags", "ctype", @@ -1936,7 +1936,7 @@ dependencies = [ [[package]] name = "did" -version = "0.25.2" +version = "0.26.0" dependencies = [ "ctype", "env_logger 0.8.4", @@ -3685,7 +3685,7 @@ dependencies = [ [[package]] name = "kilt-parachain" -version = "0.25.2" +version = "0.26.0" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -4563,7 +4563,7 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" [[package]] name = "mashnet-node" -version = "0.25.2" +version = "0.26.0" dependencies = [ "frame-benchmarking", "frame-benchmarking-cli", @@ -4612,7 +4612,7 @@ dependencies = [ [[package]] name = "mashnet-node-runtime" -version = "0.25.2" +version = "0.26.0" dependencies = [ "attestation", "bitflags", @@ -6514,7 +6514,7 @@ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" [[package]] name = "peregrine-runtime" -version = "0.25.2" +version = "0.26.0" dependencies = [ "attestation", "bitflags", @@ -10898,7 +10898,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spiritnet-runtime" -version = "0.25.2" +version = "0.26.0" dependencies = [ "cumulus-pallet-aura-ext", "cumulus-pallet-parachain-system", diff --git a/nodes/parachain/Cargo.toml b/nodes/parachain/Cargo.toml index 2298e7ba3..d9beac60b 100644 --- a/nodes/parachain/Cargo.toml +++ b/nodes/parachain/Cargo.toml @@ -4,7 +4,7 @@ build = "build.rs" description = "KILT parachain" edition = "2018" name = "kilt-parachain" -version = "0.25.2" +version = "0.26.0" [[bin]] name = "kilt-parachain" diff --git a/nodes/standalone/Cargo.toml b/nodes/standalone/Cargo.toml index 1603a03ce..fef090056 100644 --- a/nodes/standalone/Cargo.toml +++ b/nodes/standalone/Cargo.toml @@ -3,7 +3,7 @@ authors = ["KILT "] build = "build.rs" edition = "2018" name = "mashnet-node" -version = "0.25.2" +version = "0.26.0" [[bin]] name = "mashnet-node" diff --git a/pallets/attestation/Cargo.toml b/pallets/attestation/Cargo.toml index fb07def5a..1b357a0b6 100644 --- a/pallets/attestation/Cargo.toml +++ b/pallets/attestation/Cargo.toml @@ -4,7 +4,7 @@ description = "Enables adding and revoking attestations." edition = "2018" name = "attestation" repository = "https://github.com/KILTprotocol/mashnet-node" -version = "0.25.2" +version = "0.26.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] @@ -13,8 +13,8 @@ targets = ["x86_64-unknown-linux-gnu"] substrate-wasm-builder-runner = {version = "3.0.0"} [dev-dependencies] -ctype = {features = ["mock"], path = "../ctype", version = "0.25.2"} -delegation = {features = ["mock"], path = "../delegation", version = "0.25.2"} +ctype = {features = ["mock"], path = "../ctype", version = "0.26.0"} +delegation = {features = ["mock"], path = "../delegation", version = "0.26.0"} kilt-primitives = {default-features = false, path = "../../primitives"} serde = {version = "1.0.101"} sp-core = {branch = "polkadot-v0.9.9", default-features = false, git = "https://github.com/paritytech/substrate"} @@ -23,8 +23,8 @@ sp-keystore = {branch = "polkadot-v0.9.9", default-features = false, git = "http [dependencies] # Internal dependencies -ctype = {default-features = false, path = "../ctype", version = "0.25.2"} -delegation = {default-features = false, path = "../delegation", version = "0.25.2"} +ctype = {default-features = false, path = "../ctype", version = "0.26.0"} +delegation = {default-features = false, path = "../delegation", version = "0.26.0"} kilt-primitives = {default-features = false, optional = true, path = "../../primitives"} #External dependencies diff --git a/pallets/ctype/Cargo.toml b/pallets/ctype/Cargo.toml index 4fa7318b3..189935850 100644 --- a/pallets/ctype/Cargo.toml +++ b/pallets/ctype/Cargo.toml @@ -4,7 +4,7 @@ description = "Enables adding CTypes." edition = "2018" name = "ctype" repository = "https://github.com/KILTprotocol/mashnet-node" -version = "0.25.2" +version = "0.26.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] diff --git a/pallets/delegation/Cargo.toml b/pallets/delegation/Cargo.toml index 6141654e4..e8ca34ac5 100644 --- a/pallets/delegation/Cargo.toml +++ b/pallets/delegation/Cargo.toml @@ -4,7 +4,7 @@ description = "Enables creating and revoking root nodes of delegation hierarchie edition = "2018" name = "delegation" repository = "https://github.com/KILTprotocol/mashnet-node" -version = "0.25.2" +version = "0.26.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] @@ -13,7 +13,7 @@ targets = ["x86_64-unknown-linux-gnu"] substrate-wasm-builder-runner = {version = "3.0.0"} [dev-dependencies] -ctype = {features = ["mock"], path = "../ctype", version = "0.25.2"} +ctype = {features = ["mock"], path = "../ctype", version = "0.26.0"} env_logger = {version = "0.8.4"} kilt-primitives = {default-features = false, path = "../../primitives"} serde = {version = "1.0.101"} @@ -22,7 +22,7 @@ sp-keystore = {branch = "polkadot-v0.9.9", default-features = false, git = "http [dependencies] # Internal dependencies -ctype = {default-features = false, path = "../ctype", version = "0.25.2"} +ctype = {default-features = false, path = "../ctype", version = "0.26.0"} kilt-primitives = {default-features = false, path = "../../primitives"} #External dependencies diff --git a/pallets/did/Cargo.toml b/pallets/did/Cargo.toml index f0a71d136..640ab4d84 100644 --- a/pallets/did/Cargo.toml +++ b/pallets/did/Cargo.toml @@ -4,7 +4,7 @@ description = "Enables adding and removing decentralized identifiers (DIDs)." edition = "2018" name = "did" repository = "https://github.com/KILTprotocol/mashnet-node" -version = "0.25.2" +version = "0.26.0" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] @@ -16,12 +16,12 @@ substrate-wasm-builder-runner = {version = "3.0.0"} env_logger = {version = "0.8.3"} serde = {version = "1.0.101"} -ctype = {features = ["mock"], path = "../ctype", version = "0.25.2"} +ctype = {features = ["mock"], path = "../ctype", version = "0.26.0"} kilt-primitives = {default-features = false, path = "../../primitives"} [dependencies] # Internal dependencies -ctype = {optional = true, path = "../ctype", version = "0.25.2"} +ctype = {optional = true, path = "../ctype", version = "0.26.0"} kilt-primitives = {default-features = false, path = "../../primitives"} # External dependencies diff --git a/runtimes/peregrine/Cargo.toml b/runtimes/peregrine/Cargo.toml index 7142a19cb..64bc9ca16 100644 --- a/runtimes/peregrine/Cargo.toml +++ b/runtimes/peregrine/Cargo.toml @@ -2,7 +2,7 @@ authors = ["KILT "] edition = "2018" name = "peregrine-runtime" -version = "0.25.2" +version = "0.26.0" [dependencies] bitflags = {version = "1.2.1", default-features = false} diff --git a/runtimes/spiritnet/Cargo.toml b/runtimes/spiritnet/Cargo.toml index 706915c75..818b9594e 100644 --- a/runtimes/spiritnet/Cargo.toml +++ b/runtimes/spiritnet/Cargo.toml @@ -2,7 +2,7 @@ authors = ["KILT "] edition = "2018" name = "spiritnet-runtime" -version = "0.25.2" +version = "0.26.0" [dependencies] codec = {package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"]} diff --git a/runtimes/standalone/Cargo.toml b/runtimes/standalone/Cargo.toml index 7c7cfee86..ffc0ced33 100644 --- a/runtimes/standalone/Cargo.toml +++ b/runtimes/standalone/Cargo.toml @@ -2,7 +2,7 @@ authors = ["KILT "] edition = "2018" name = "mashnet-node-runtime" -version = "0.25.2" +version = "0.26.0" [build-dependencies] substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.9"}