From 41c4f5636cbd6c069bf884f4004e869ce3e3ff54 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 15 Nov 2024 19:57:11 +0100 Subject: [PATCH] bump version to 0.16.0 (#794) --- Cargo.lock | 52 +++++++++++----------- Cargo.toml | 30 ++++++------- crates/chia-bls/Cargo.toml | 2 +- crates/chia-bls/fuzz/Cargo.toml | 2 +- crates/chia-client/Cargo.toml | 2 +- crates/chia-consensus/Cargo.toml | 2 +- crates/chia-consensus/fuzz/Cargo.toml | 2 +- crates/chia-protocol/Cargo.toml | 2 +- crates/chia-protocol/fuzz/Cargo.toml | 2 +- crates/chia-puzzles/Cargo.toml | 2 +- crates/chia-puzzles/fuzz/Cargo.toml | 2 +- crates/chia-tools/Cargo.toml | 2 +- crates/chia_py_streamable_macro/Cargo.toml | 2 +- crates/clvm-traits/Cargo.toml | 2 +- crates/clvm-traits/fuzz/Cargo.toml | 2 +- crates/clvm-utils/Cargo.toml | 2 +- crates/clvm-utils/fuzz/Cargo.toml | 2 +- wheel/Cargo.toml | 2 +- 18 files changed, 57 insertions(+), 57 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index de14ccb52..2b5f798ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,9 +271,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chia" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-client", "chia-consensus", "chia-protocol", @@ -304,7 +304,7 @@ dependencies = [ [[package]] name = "chia-bls" -version = "0.15.0" +version = "0.16.0" dependencies = [ "arbitrary", "blst", @@ -324,16 +324,16 @@ dependencies = [ [[package]] name = "chia-bls-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "libfuzzer-sys", "pyo3", ] [[package]] name = "chia-client" -version = "0.15.0" +version = "0.16.0" dependencies = [ "chia-protocol", "chia-traits 0.15.0", @@ -346,9 +346,9 @@ dependencies = [ [[package]] name = "chia-consensus" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-protocol", "chia-puzzles", "chia-sha2", @@ -371,9 +371,9 @@ dependencies = [ [[package]] name = "chia-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-consensus", "chia-protocol", "chia-sha2", @@ -387,10 +387,10 @@ dependencies = [ [[package]] name = "chia-protocol" -version = "0.15.0" +version = "0.16.0" dependencies = [ "arbitrary", - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-sha2", "chia-traits 0.15.0", "chia_py_streamable_macro", @@ -405,7 +405,7 @@ dependencies = [ [[package]] name = "chia-protocol-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ "arbitrary", "chia-protocol", @@ -419,10 +419,10 @@ dependencies = [ [[package]] name = "chia-puzzles" -version = "0.15.0" +version = "0.16.0" dependencies = [ "arbitrary", - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-protocol", "chia-sha2", "clvm-traits", @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "chia-puzzles-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ "chia-puzzles", "clvm-traits", @@ -465,10 +465,10 @@ dependencies = [ [[package]] name = "chia-tools" -version = "0.15.0" +version = "0.16.0" dependencies = [ "blocking-threadpool", - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-consensus", "chia-protocol", "chia-puzzles", @@ -506,7 +506,7 @@ dependencies = [ [[package]] name = "chia_py_streamable_macro" -version = "0.15.0" +version = "0.16.0" dependencies = [ "proc-macro-crate 1.3.1", "proc-macro2", @@ -516,9 +516,9 @@ dependencies = [ [[package]] name = "chia_rs" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "chia-client", "chia-consensus", "chia-protocol", @@ -636,9 +636,9 @@ dependencies = [ [[package]] name = "clvm-traits" -version = "0.15.0" +version = "0.16.0" dependencies = [ - "chia-bls 0.15.0", + "chia-bls 0.16.0", "clvm-derive", "clvmr", "hex", @@ -650,7 +650,7 @@ dependencies = [ [[package]] name = "clvm-traits-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ "clvm-traits", "clvmr", @@ -659,7 +659,7 @@ dependencies = [ [[package]] name = "clvm-utils" -version = "0.15.0" +version = "0.16.0" dependencies = [ "chia-sha2", "clvm-traits", @@ -670,7 +670,7 @@ dependencies = [ [[package]] name = "clvm-utils-fuzz" -version = "0.15.0" +version = "0.16.0" dependencies = [ "chia-fuzz", "clvm-traits", diff --git a/Cargo.toml b/Cargo.toml index d78eeee50..e2f8a2ed0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "A meta-crate that exports all of the Chia crates in the workspace." @@ -99,25 +99,25 @@ openssl = ["chia-sha2/openssl", "clvmr/openssl"] lto = "thin" [workspace.dependencies] -chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version = "0.15.0" } +chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version = "0.16.0" } chia_streamable_macro = { path = "./crates/chia_streamable_macro", version = "0.15.0" } -chia-bls = { path = "./crates/chia-bls", version = "0.15.0" } -chia-client = { path = "./crates/chia-client", version = "0.15.0" } -chia-consensus = { path = "./crates/chia-consensus", version = "0.15.0" } -chia-protocol = { path = "./crates/chia-protocol", version = "0.15.0" } +chia-bls = { path = "./crates/chia-bls", version = "0.16.0" } +chia-client = { path = "./crates/chia-client", version = "0.16.0" } +chia-consensus = { path = "./crates/chia-consensus", version = "0.16.0" } +chia-protocol = { path = "./crates/chia-protocol", version = "0.16.0" } chia-ssl = { path = "./crates/chia-ssl", version = "0.11.0" } chia-traits = { path = "./crates/chia-traits", version = "0.15.0" } -chia-puzzles = { path = "./crates/chia-puzzles", version = "0.15.0" } +chia-puzzles = { path = "./crates/chia-puzzles", version = "0.16.0" } chia-sha2 = { path = "./crates/chia-sha2", version = "0.15.0" } -clvm-traits = { path = "./crates/clvm-traits", version = "0.15.0" } -clvm-utils = { path = "./crates/clvm-utils", version = "0.15.0" } +clvm-traits = { path = "./crates/clvm-traits", version = "0.16.0" } +clvm-utils = { path = "./crates/clvm-utils", version = "0.16.0" } clvm-derive = { path = "./crates/clvm-derive", version = "0.13.0" } -chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.15.0" } -chia-bls-fuzz = { path = "./crates/chia-bls/fuzz", version = "0.15.0" } -chia-protocol-fuzz = { path = "./crates/chia-protocol/fuzz", version = "0.15.0" } -chia-puzzles-fuzz = { path = "./crates/chia-puzzles/fuzz", version = "0.15.0" } -clvm-traits-fuzz = { path = "./crates/clvm-traits/fuzz", version = "0.15.0" } -clvm-utils-fuzz = { path = "./crates/clvm-utils/fuzz", version = "0.15.0" } +chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.16.0" } +chia-bls-fuzz = { path = "./crates/chia-bls/fuzz", version = "0.16.0" } +chia-protocol-fuzz = { path = "./crates/chia-protocol/fuzz", version = "0.16.0" } +chia-puzzles-fuzz = { path = "./crates/chia-puzzles/fuzz", version = "0.16.0" } +clvm-traits-fuzz = { path = "./crates/clvm-traits/fuzz", version = "0.16.0" } +clvm-utils-fuzz = { path = "./crates/clvm-utils/fuzz", version = "0.16.0" } blst = { version = "0.3.12", features = ["portable"] } clvmr = "0.10.0" syn = "2.0.87" diff --git a/crates/chia-bls/Cargo.toml b/crates/chia-bls/Cargo.toml index 9cffe6356..4f7bd55ef 100644 --- a/crates/chia-bls/Cargo.toml +++ b/crates/chia-bls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-bls" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "BLS signature, verification and aggregation functions for the Chia blockchain" diff --git a/crates/chia-bls/fuzz/Cargo.toml b/crates/chia-bls/fuzz/Cargo.toml index 1a05ef2c0..2261f0401 100644 --- a/crates/chia-bls/fuzz/Cargo.toml +++ b/crates/chia-bls/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-bls-fuzz" -version = "0.15.0" +version = "0.16.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/crates/chia-client/Cargo.toml b/crates/chia-client/Cargo.toml index b783810d2..c39f9889f 100644 --- a/crates/chia-client/Cargo.toml +++ b/crates/chia-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-client" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Chia light client and async peer connections." diff --git a/crates/chia-consensus/Cargo.toml b/crates/chia-consensus/Cargo.toml index b061da49d..a4e633c8a 100644 --- a/crates/chia-consensus/Cargo.toml +++ b/crates/chia-consensus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-consensus" -version = "0.15.0" +version = "0.16.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 e2152ee9e..4fa64811d 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.15.0" +version = "0.16.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/crates/chia-protocol/Cargo.toml b/crates/chia-protocol/Cargo.toml index b6f46c932..a4f8e62f5 100644 --- a/crates/chia-protocol/Cargo.toml +++ b/crates/chia-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-protocol" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Chia network protocol message types" diff --git a/crates/chia-protocol/fuzz/Cargo.toml b/crates/chia-protocol/fuzz/Cargo.toml index a7cf3c982..9a5a0829d 100644 --- a/crates/chia-protocol/fuzz/Cargo.toml +++ b/crates/chia-protocol/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-protocol-fuzz" -version = "0.15.0" +version = "0.16.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/crates/chia-puzzles/Cargo.toml b/crates/chia-puzzles/Cargo.toml index 4a36f668a..a415afecb 100644 --- a/crates/chia-puzzles/Cargo.toml +++ b/crates/chia-puzzles/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-puzzles" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Chia primitives needed for building wallets." diff --git a/crates/chia-puzzles/fuzz/Cargo.toml b/crates/chia-puzzles/fuzz/Cargo.toml index cf19885f4..918709e98 100644 --- a/crates/chia-puzzles/fuzz/Cargo.toml +++ b/crates/chia-puzzles/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-puzzles-fuzz" -version = "0.15.0" +version = "0.16.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/crates/chia-tools/Cargo.toml b/crates/chia-tools/Cargo.toml index 33c91b34c..c6c5fd35b 100644 --- a/crates/chia-tools/Cargo.toml +++ b/crates/chia-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-tools" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Utility functions and types used by the Chia blockchain full node" diff --git a/crates/chia_py_streamable_macro/Cargo.toml b/crates/chia_py_streamable_macro/Cargo.toml index 20337329d..9e971139d 100644 --- a/crates/chia_py_streamable_macro/Cargo.toml +++ b/crates/chia_py_streamable_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia_py_streamable_macro" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Derive macro to create python bindings for Chia types" diff --git a/crates/clvm-traits/Cargo.toml b/crates/clvm-traits/Cargo.toml index d5f163670..bada6d170 100644 --- a/crates/clvm-traits/Cargo.toml +++ b/crates/clvm-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-traits" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Traits for encoding and decoding CLVM objects." diff --git a/crates/clvm-traits/fuzz/Cargo.toml b/crates/clvm-traits/fuzz/Cargo.toml index 5e40a5426..e20f210a3 100644 --- a/crates/clvm-traits/fuzz/Cargo.toml +++ b/crates/clvm-traits/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-traits-fuzz" -version = "0.15.0" +version = "0.16.0" publish = false edition = "2021" diff --git a/crates/clvm-utils/Cargo.toml b/crates/clvm-utils/Cargo.toml index 0f1a53b1a..6fae125e4 100644 --- a/crates/clvm-utils/Cargo.toml +++ b/crates/clvm-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-utils" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Utility functions for processing clvm programs and structures" diff --git a/crates/clvm-utils/fuzz/Cargo.toml b/crates/clvm-utils/fuzz/Cargo.toml index 1c2f915e1..066713f1b 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.15.0" +version = "0.16.0" authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/wheel/Cargo.toml b/wheel/Cargo.toml index 6f90feaa0..3010aa1eb 100644 --- a/wheel/Cargo.toml +++ b/wheel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia_rs" -version = "0.15.0" +version = "0.16.0" authors = ["Richard Kiss "] edition = "2021" license = "Apache-2.0"