From d42269085d9ef95aa5cb78b7d2f9085eaeaf2f88 Mon Sep 17 00:00:00 2001 From: Matthew Dean Date: Mon, 8 Jan 2024 14:35:51 +0000 Subject: [PATCH] Update versions and move dependency to workspace --- Cargo.lock | 6 +++--- Cargo.toml | 2 ++ node/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 2 +- runtime/types/Cargo.toml | 6 +++--- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 482634d1..b17a7389 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1965,7 +1965,7 @@ dependencies = [ [[package]] name = "dscp-node" -version = "10.0.0" +version = "10.0.1" dependencies = [ "async-trait", "bs58 0.5.0", @@ -2018,7 +2018,7 @@ dependencies = [ [[package]] name = "dscp-node-runtime" -version = "10.0.0" +version = "10.0.1" dependencies = [ "dscp-runtime-types", "frame-benchmarking", @@ -2079,7 +2079,7 @@ dependencies = [ [[package]] name = "dscp-runtime-types" -version = "1.0.1" +version = "1.0.2" dependencies = [ "frame-support", "pallet-process-validation", diff --git a/Cargo.toml b/Cargo.toml index a0c8a2b2..4b7bee19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,6 +21,8 @@ lazy_static = "1.4.0" pest = "2.7.6" pest_derive = "2.7.6" thiserror = "1.0.56" +strum = { version = "0.25.0", default-features = false } +strum_macros = { version = "0.25.3", default-features = false } ################################################################# # substrate linked dependencies in crates.io that may be pinned # diff --git a/node/Cargo.toml b/node/Cargo.toml index 3b1137f4..fd1664cd 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -6,7 +6,7 @@ edition = '2021' license = 'Apache-2.0' repository = 'https://github.com/digicatapult/dscp-node/' name = 'dscp-node' -version = '10.0.0' +version = '10.0.1' [[bin]] name = 'dscp-node' diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index b80133ef..935be62d 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dscp-node-runtime" -version = "10.0.0" +version = "10.0.1" authors = ["Digital Catapult "] edition = "2021" license = "Apache-2.0" diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 1c244f23..b4f77cf2 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -82,7 +82,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("dscp"), impl_name: create_runtime_str!("dscp"), authoring_version: 1, - spec_version: 1000, + spec_version: 1001, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/types/Cargo.toml b/runtime/types/Cargo.toml index 7313b5c8..a0f59dc0 100644 --- a/runtime/types/Cargo.toml +++ b/runtime/types/Cargo.toml @@ -5,7 +5,7 @@ edition = '2021' license = 'Apache-2.0' repository = 'https://github.com/digicatapult/dscp-node/' name = 'dscp-runtime-types' -version = "1.0.1" +version = "1.0.2" [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] @@ -17,8 +17,8 @@ parity-scale-codec = { workspace = true, features = ["derive"] } frame-support = { workspace = true } sp-core = { workspace = true, features = ["serde"] } sp-runtime = { workspace = true, features = ["serde"] } -strum = { version = "0.25.0", features = [] } -strum_macros = { version = "0.25.3", features = [] } +strum = { workspace = true, features = [] } +strum_macros = { workspace = true, features = [] } pallet-process-validation = { default-features = false, path = '../../pallets/process-validation' }