From 74b0c891f4d24c59e5225856773681c0299950f2 Mon Sep 17 00:00:00 2001 From: PG Herveou Date: Thu, 5 Oct 2023 15:04:00 +0200 Subject: [PATCH] bump version (#209) --- Cargo.lock | 20 ++++++++++---------- node/Cargo.toml | 4 ++-- runtime/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2bd76a..d3e25ed 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1212,7 +1212,7 @@ checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" [[package]] name = "contracts-node" -version = "0.31.0" +version = "0.32.0" dependencies = [ "clap", "contracts-node-runtime", @@ -1247,7 +1247,7 @@ dependencies = [ [[package]] name = "contracts-node-runtime" -version = "0.31.0" +version = "0.32.0" dependencies = [ "frame-executive", "frame-support", @@ -3315,7 +3315,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi 0.3.3", - "rustix 0.38.15", + "rustix 0.38.17", "windows-sys 0.48.0", ] @@ -4198,7 +4198,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.15", + "rustix 0.38.17", ] [[package]] @@ -5931,9 +5931,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.15" +version = "0.38.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531" +checksum = "f25469e9ae0f3d0047ca8b93fc56843f38e6774f0914a107ff8b41be8be8e0b7" dependencies = [ "bitflags 2.4.0", "errno", @@ -7299,9 +7299,9 @@ dependencies = [ [[package]] name = "sharded-slab" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1b21f559e07218024e7e9f90f96f601825397de0e25420135f7f952453fed0b" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ "lazy_static", ] @@ -8392,7 +8392,7 @@ dependencies = [ "cfg-if", "fastrand 2.0.1", "redox_syscall 0.3.5", - "rustix 0.38.15", + "rustix 0.38.17", "windows-sys 0.48.0", ] @@ -9706,7 +9706,7 @@ dependencies = [ "either", "home", "once_cell", - "rustix 0.38.15", + "rustix 0.38.17", ] [[package]] diff --git a/node/Cargo.toml b/node/Cargo.toml index 87b466e..b30a4f5 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contracts-node" -version = "0.31.0" +version = "0.32.0" authors = ["Parity Technologies "] description = "Substrate node configured for smart contracts via `pallet-contracts`." edition = "2021" @@ -48,7 +48,7 @@ substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", package = "pallet-transaction-payment-rpc" } # Local Dependencies -contracts-node-runtime = { path = "../runtime", version = "0.31.0" } +contracts-node-runtime = { path = "../runtime", version = "0.32.0" } # yank this crate until # https://github.com/bluejekyll/enum-as-inner/issues/98 diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index de66bf3..77771f8 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contracts-node-runtime" -version = "0.31.0" +version = "0.32.0" authors = ["Parity Technologies "] description = "Runtime configured for smart contracts via `pallet-contracts`." edition = "2021"