From b77fa8c767ef3023d438834ad9cc56ff63da7285 Mon Sep 17 00:00:00 2001 From: arvidn Date: Wed, 14 Aug 2024 19:20:55 +0200 Subject: [PATCH] bump version to 0.12.0 --- Cargo.lock | 12 ++++++------ Cargo.toml | 6 +++--- crates/chia-consensus/Cargo.toml | 2 +- crates/chia-consensus/fuzz/Cargo.toml | 2 +- crates/chia-tools/Cargo.toml | 2 +- crates/clvm-utils/fuzz/Cargo.toml | 2 +- wheel/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 48c39c516..b52c5664c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,7 +271,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chia" -version = "0.11.0" +version = "0.12.0" dependencies = [ "chia-bls 0.11.0", "chia-client", @@ -346,7 +346,7 @@ dependencies = [ [[package]] name = "chia-consensus" -version = "0.11.0" +version = "0.12.0" dependencies = [ "chia-bls 0.11.0", "chia-protocol", @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "chia-fuzz" -version = "0.11.0" +version = "0.12.0" dependencies = [ "chia-consensus", "chia-protocol", @@ -453,7 +453,7 @@ dependencies = [ [[package]] name = "chia-tools" -version = "0.11.0" +version = "0.12.0" dependencies = [ "blocking-threadpool", "chia-bls 0.11.0", @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "chia_rs" -version = "0.11.0" +version = "0.12.0" dependencies = [ "chia-bls 0.11.0", "chia-consensus", @@ -660,7 +660,7 @@ dependencies = [ [[package]] name = "clvm-utils-fuzz" -version = "0.11.0" +version = "0.12.0" dependencies = [ "chia-fuzz", "clvm-traits", diff --git a/Cargo.toml b/Cargo.toml index 20c1150ac..063713ba2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia" -version = "0.11.0" +version = "0.12.0" edition = "2021" license = "Apache-2.0" description = "A meta-crate that exports all of the Chia crates in the workspace." @@ -95,7 +95,7 @@ chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version chia_streamable_macro = { path = "./crates/chia_streamable_macro", version = "0.11.0" } chia-bls = { path = "./crates/chia-bls", version = "0.11.0" } chia-client = { path = "./crates/chia-client", version = "0.11.0" } -chia-consensus = { path = "./crates/chia-consensus", version = "0.11.0" } +chia-consensus = { path = "./crates/chia-consensus", version = "0.12.0" } chia-protocol = { path = "./crates/chia-protocol", version = "0.11.0" } chia-ssl = { path = "./crates/chia-ssl", version = "0.11.0" } chia-traits = { path = "./crates/chia-traits", version = "0.11.0" } @@ -103,7 +103,7 @@ chia-puzzles = { path = "./crates/chia-puzzles", version = "0.11.0" } clvm-traits = { path = "./crates/clvm-traits", version = "0.11.0" } clvm-utils = { path = "./crates/clvm-utils", version = "0.11.0" } clvm-derive = { path = "./crates/clvm-derive", version = "0.11.0" } -chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.11.0" } +chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.12.0" } blst = { version = "0.3.12", features = ["portable"] } clvmr = "0.8.0" syn = "2.0.72" diff --git a/crates/chia-consensus/Cargo.toml b/crates/chia-consensus/Cargo.toml index f13724e48..c58c66e25 100644 --- a/crates/chia-consensus/Cargo.toml +++ b/crates/chia-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-consensus" -version = "0.11.0" +version = "0.12.0" edition = "2021" license = "Apache-2.0" description = "Utility functions and types used by the Chia blockchain full node" diff --git a/crates/chia-consensus/fuzz/Cargo.toml b/crates/chia-consensus/fuzz/Cargo.toml index beea3e215..6022d3a49 100644 --- a/crates/chia-consensus/fuzz/Cargo.toml +++ b/crates/chia-consensus/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-fuzz" -version = "0.11.0" +version = "0.12.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/crates/chia-tools/Cargo.toml b/crates/chia-tools/Cargo.toml index cac9fd357..950e80ee4 100644 --- a/crates/chia-tools/Cargo.toml +++ b/crates/chia-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-tools" -version = "0.11.0" +version = "0.12.0" edition = "2021" license = "Apache-2.0" description = "Utility functions and types used by the Chia blockchain full node" diff --git a/crates/clvm-utils/fuzz/Cargo.toml b/crates/clvm-utils/fuzz/Cargo.toml index dca2248b6..9dd4e1a0c 100644 --- a/crates/clvm-utils/fuzz/Cargo.toml +++ b/crates/clvm-utils/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-utils-fuzz" -version = "0.11.0" +version = "0.12.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/wheel/Cargo.toml b/wheel/Cargo.toml index 01250aaeb..f3d602ddd 100644 --- a/wheel/Cargo.toml +++ b/wheel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia_rs" -version = "0.11.0" +version = "0.12.0" authors = ["Richard Kiss "] edition = "2021" license = "Apache-2.0"