From 7647ab07db2e760966c719d55bd353f7fe036d1e Mon Sep 17 00:00:00 2001 From: Rigidity Date: Tue, 6 Feb 2024 10:58:26 -0500 Subject: [PATCH 1/2] Bump to 0.5.2 --- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 8 ++++---- chia-tools/Cargo.toml | 28 ++++++++++++++-------------- chia-traits/Cargo.toml | 2 +- chia-wallet/fuzz/Cargo.toml | 4 ++-- clvm-derive/Cargo.toml | 2 +- clvm-traits/Cargo.toml | 4 ++-- wheel/Cargo.toml | 6 +++--- 8 files changed, 41 insertions(+), 41 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 27295986e..aaaeea935 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,10 +266,10 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chia" -version = "0.5.1" +version = "0.5.2" dependencies = [ "chia-protocol", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "chia-wallet", "clvm-derive", "clvm-traits", @@ -309,7 +309,7 @@ dependencies = [ "anyhow", "arbitrary", "blst", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "chia_py_streamable_macro", "criterion", "hex", @@ -333,10 +333,10 @@ dependencies = [ [[package]] name = "chia-client" -version = "0.5.0" +version = "0.5.1" dependencies = [ "chia-protocol", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "futures-util", "thiserror", "tokio", @@ -350,7 +350,7 @@ version = "0.5.1" dependencies = [ "chia", "chia-protocol", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "clvm-traits", "clvm-utils", "clvmr", @@ -364,7 +364,7 @@ version = "0.5.1" dependencies = [ "arbitrary", "chia-bls 0.5.1", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "chia_py_streamable_macro", "chia_streamable_macro 0.3.0", "clvm-traits", @@ -382,7 +382,7 @@ version = "0.0.0" dependencies = [ "arbitrary", "chia-protocol", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "clvm-traits", "clvmr", "hex", @@ -405,12 +405,12 @@ dependencies = [ [[package]] name = "chia-tools" -version = "0.5.1" +version = "0.5.2" dependencies = [ "chia", "chia-bls 0.5.1", "chia-protocol", - "chia-traits 0.5.1", + "chia-traits 0.5.2", "chia-wallet", "clap", "clvm-traits", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "chia-traits" -version = "0.5.1" +version = "0.5.2" dependencies = [ "chia_py_streamable_macro", "chia_streamable_macro 0.3.0", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "chia-wallet-fuzz" -version = "0.5.1" +version = "0.5.2" dependencies = [ "chia-wallet", "clvm-traits", @@ -588,7 +588,7 @@ checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" [[package]] name = "clvm-derive" -version = "0.2.14" +version = "0.5.2" dependencies = [ "proc-macro2", "quote", @@ -597,7 +597,7 @@ dependencies = [ [[package]] name = "clvm-traits" -version = "0.5.1" +version = "0.5.2" dependencies = [ "chia-bls 0.5.1", "clvm-derive", diff --git a/Cargo.toml b/Cargo.toml index 17baca7dd..fa1854231 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ exclude = ["wheel"] [package] name = "chia" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Utility functions and types used by the Chia blockchain full node" @@ -41,9 +41,9 @@ clvmr = "0.5.0" hex = "0.4.3" pyo3 = { version = ">=0.19.0", optional = true } clvm-utils = { version = "0.5.1", path = "clvm-utils" } -chia-traits = { version = "0.5.1", path = "chia-traits" } -clvm-traits = { version = "0.5.1", path = "clvm-traits" } -clvm-derive = { version = "0.2.14", path = "clvm-derive" } +chia-traits = { version = "0.5.2", path = "chia-traits" } +clvm-traits = { version = "0.5.2", path = "clvm-traits" } +clvm-derive = { version = "0.5.2", path = "clvm-derive" } chia-protocol = { version = "0.5.1", path = "chia-protocol" } chia-wallet = { version = "0.5.1", path = "chia-wallet" } hex-literal = "0.4.1" diff --git a/chia-tools/Cargo.toml b/chia-tools/Cargo.toml index 59973675d..d564e08d8 100644 --- a/chia-tools/Cargo.toml +++ b/chia-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-tools" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Utility functions and types used by the Chia blockchain full node" @@ -9,20 +9,20 @@ homepage = "https://github.com/Chia-Network/chia_rs/chia-tools" repository = "https://github.com/Chia-Network/chia_rs/chia-tools" [dependencies] -chia-protocol = { version = "=0.5.1", path = "../chia-protocol" } -chia-traits = { version = "=0.5.1", path = "../chia-traits" } -clvm-utils = { version = "=0.5.1", path = "../clvm-utils" } -clvm-traits = { version = "=0.5.1", path = "../clvm-traits" } -chia-wallet = { version = "=0.5.1", path = "../chia-wallet" } -chia-bls = { version = "=0.5.1", path = "../chia-bls" } +chia-protocol = { version = "0.5.1", path = "../chia-protocol" } +chia-traits = { version = "0.5.2", path = "../chia-traits" } +clvm-utils = { version = "0.5.1", path = "../clvm-utils" } +clvm-traits = { version = "0.5.2", path = "../clvm-traits" } +chia-wallet = { version = "0.5.1", path = "../chia-wallet" } +chia-bls = { version = "0.5.1", path = "../chia-bls" } clvmr = { version = "0.5.0", features = ["counters"] } -chia = { version = "=0.5.1", path = ".." } -rusqlite = { version = "=0.30.0", features = ["bundled"] } -clap = { version = "=4.3.9", features = ["derive"] } -zstd = "=0.12.3" -threadpool = "=1.8.1" -hex = "=0.4.3" -hex-literal = "=0.4.1" +chia = { version = "0.5.2", path = ".." } +rusqlite = { version = "0.30.0", features = ["bundled"] } +clap = { version = "4.3.9", features = ["derive"] } +zstd = "0.12.3" +threadpool = "1.8.1" +hex = "0.4.3" +hex-literal = "0.4.1" [lib] name = "chia_tools" diff --git a/chia-traits/Cargo.toml b/chia-traits/Cargo.toml index bf7692625..ccd344b43 100644 --- a/chia-traits/Cargo.toml +++ b/chia-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-traits" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Chia traits for Streamable types (chia's serialization format)" diff --git a/chia-wallet/fuzz/Cargo.toml b/chia-wallet/fuzz/Cargo.toml index 8f1ee8ae2..7d05a354c 100644 --- a/chia-wallet/fuzz/Cargo.toml +++ b/chia-wallet/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia-wallet-fuzz" -version = "0.5.1" +version = "0.5.2" authors = ["Automatically generated"] publish = false edition = "2021" @@ -13,7 +13,7 @@ libfuzzer-sys = "0.4" clvmr = "0.5.0" pyo3 = { version = ">=0.19.0", features = ["auto-initialize"]} chia-wallet = { path = ".." } -clvm-traits = { version = "=0.5.1", path = "../../clvm-traits" } +clvm-traits = { version = "0.5.2", path = "../../clvm-traits" } [[bin]] name = "roundtrip" diff --git a/clvm-derive/Cargo.toml b/clvm-derive/Cargo.toml index 88234bf76..ce5f49f33 100644 --- a/clvm-derive/Cargo.toml +++ b/clvm-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-derive" -version = "0.2.14" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Derive macros for implementing CLVM traits." diff --git a/clvm-traits/Cargo.toml b/clvm-traits/Cargo.toml index 04f097125..f4bc60dd1 100644 --- a/clvm-traits/Cargo.toml +++ b/clvm-traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clvm-traits" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Traits for encoding and decoding CLVM objects." @@ -19,7 +19,7 @@ py-bindings = ["dep:pyo3"] [dependencies] pyo3 = { version = ">=0.19.0", optional = true } clvmr = "0.5.0" -clvm-derive = { version = "0.2.14", path = "../clvm-derive", optional = true } +clvm-derive = { version = "0.5.2", path = "../clvm-derive", optional = true } chia-bls = { version = "0.5.1", path = "../chia-bls", optional = true } num-bigint = "0.4.3" thiserror = "1.0.44" diff --git a/wheel/Cargo.toml b/wheel/Cargo.toml index 32ce1872c..147d3c9a6 100644 --- a/wheel/Cargo.toml +++ b/wheel/Cargo.toml @@ -19,11 +19,11 @@ clvmr = "0.5.0" hex = "0.4.3" sha2 = "0.10.8" pyo3 = { version = "=0.19.0", features = ["extension-module", "multiple-pymethods"] } -chia = { version = "=0.5.1", path = "..", features = ["py-bindings"] } +chia = { version = "=0.5.2", path = "..", features = ["py-bindings"] } chia-bls = { version = "=0.5.1", path = "../chia-bls", features = ["py-bindings"] } chia-protocol = { version = "=0.5.1", path = "../chia-protocol", features = ["py-bindings"] } -chia-traits = { version = "=0.5.1", path = "../chia-traits", features = ["py-bindings"] } -clvm-traits = { version = "=0.5.1", path = "../clvm-traits", features = ["derive", "py-bindings"] } +chia-traits = { version = "=0.5.2", path = "../chia-traits", features = ["py-bindings"] } +clvm-traits = { version = "=0.5.2", path = "../clvm-traits", features = ["derive", "py-bindings"] } chia_py_streamable_macro = { version = "=0.5.1", path = "../chia_py_streamable_macro" } chia_streamable_macro = { version = "=0.3.0", path = "../chia_streamable_macro" } From 3b4e198c5757a2de480943fcbc94dd9cfdff6455 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Tue, 6 Feb 2024 11:15:33 -0500 Subject: [PATCH 2/2] Update ahash to 0.8.7 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aaaeea935..2988a560f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" dependencies = [ "cfg-if", "once_cell",