From 387dd7330e7511a48692891040f282c55ef01167 Mon Sep 17 00:00:00 2001 From: arvidn Date: Fri, 18 Nov 2022 13:47:04 +0100 Subject: [PATCH] bump chia_py_streamable_macro version --- chia-protocol/Cargo.toml | 2 +- chia_py_streamable_macro/Cargo.toml | 2 +- wheel/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chia-protocol/Cargo.toml b/chia-protocol/Cargo.toml index 4b023e8a4..b5c130287 100644 --- a/chia-protocol/Cargo.toml +++ b/chia-protocol/Cargo.toml @@ -16,7 +16,7 @@ pyo3 = { version = "=0.15.1", features = ["extension-module", "multiple-pymethod sha2 = "=0.10.2" hex = "=0.4.3" chia_streamable_macro = { version = "=0.2.3", path = "../chia_streamable_macro" } -chia_py_streamable_macro = { path = "../chia_py_streamable_macro", version = "=0.1.1", optional = true } +chia_py_streamable_macro = { path = "../chia_py_streamable_macro", version = "=0.1.2", optional = true } clvmr = "=0.1.24" [lib] diff --git a/chia_py_streamable_macro/Cargo.toml b/chia_py_streamable_macro/Cargo.toml index 6c9fb103e..872007267 100644 --- a/chia_py_streamable_macro/Cargo.toml +++ b/chia_py_streamable_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chia_py_streamable_macro" -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "Apache-2.0" description = "Derive macro to create python bindings for Chia types" diff --git a/wheel/Cargo.toml b/wheel/Cargo.toml index ba5157c7a..f5f437b06 100644 --- a/wheel/Cargo.toml +++ b/wheel/Cargo.toml @@ -19,6 +19,6 @@ chia = { path = "..", features = ["py-bindings"] } chia-protocol = { path = "../chia-protocol", features = ["py-bindings"] } clvmr = "=0.1.24" pyo3 = { version = "=0.15.1", features = ["extension-module", "multiple-pymethods"] } -chia_py_streamable_macro = { version= "0.1.1", path = "../chia_py_streamable_macro" } +chia_py_streamable_macro = { version= "0.1.2", path = "../chia_py_streamable_macro" } chia_streamable_macro = { version = "0.2.3", path = "../chia_streamable_macro" } hex = "=0.4.3"