Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.5.0 #382

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exclude = ["wheel"]

[package]
name = "chia"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -41,11 +41,11 @@ clvmr = "0.4.0"
hex = "0.4.3"
pyo3 = { version = ">=0.19.0", optional = true }
clvm-utils = { version = "0.4.0", path = "clvm-utils" }
chia-traits = { version = "0.3.3", path = "chia-traits" }
chia-traits = { version = "0.5.0", path = "chia-traits" }
clvm-traits = { version = "0.3.3", path = "clvm-traits" }
clvm-derive = { version = "0.2.14", path = "clvm-derive" }
chia-protocol = { version = "0.4.0", path = "chia-protocol" }
chia-wallet = { version = "0.4.0", path = "chia-wallet" }
chia-protocol = { version = "0.5.0", path = "chia-protocol" }
chia-wallet = { version = "0.5.0", path = "chia-wallet" }
hex-literal = "0.4.1"
thiserror = "1.0.44"

Expand Down
4 changes: 2 additions & 2 deletions chia-bls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ repository = "https://github.com/Chia-Network/chia_rs/chia-bls/"
py-bindings = ["dep:pyo3", "chia_py_streamable_macro", "chia-traits/py-bindings"]

[dependencies]
chia-traits = { version = "0.3.3", path = "../chia-traits" }
chia_py_streamable_macro = { version = "0.3.0", path = "../chia_py_streamable_macro", optional = true }
chia-traits = { version = "0.5.0", path = "../chia-traits" }
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
tiny-bip39 = "1.0.0"
anyhow = "1.0.71"
sha2 = "0.10.8"
Expand Down
4 changes: 2 additions & 2 deletions chia-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ homepage = "https://github.com/Chia-Network/chia_rs/chia-client/"
repository = "https://github.com/Chia-Network/chia_rs/chia-client/"

[dependencies]
chia-protocol = { version = "0.4.0", path = "../chia-protocol" }
chia-traits = { version = "0.3.3", path = "../chia-traits" }
chia-protocol = { version = "0.5.0", path = "../chia-protocol" }
chia-traits = { version = "0.5.0", path = "../chia-traits" }
tokio = { version = "1.32.0", features = ["rt", "sync"] }
tokio-tungstenite = "0.21.0"
futures-util = "0.3.28"
Expand Down
6 changes: 3 additions & 3 deletions chia-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-protocol"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
Expand All @@ -16,9 +16,9 @@ pyo3 = { version = "0.19.0", features = ["multiple-pymethods", "num-bigint"], op
sha2 = "0.10.8"
hex = "0.4.3"
chia_streamable_macro = { version = "0.3.0", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "0.3.0", path = "../chia_py_streamable_macro", optional = true }
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
clvmr = "0.4.0"
chia-traits = { version = "0.3.3", path = "../chia-traits" }
chia-traits = { version = "0.5.0", path = "../chia-traits" }
clvm-traits = { version = "0.3.3", path = "../clvm-traits", features = ["derive"] }
clvm-utils = { version = "0.4.0", path = "../clvm-utils" }
chia-bls = { version = "0.4.0", path = "../chia-bls" }
Expand Down
8 changes: 4 additions & 4 deletions chia-tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-tools"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -9,14 +9,14 @@ 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.4.0", path = "../chia-protocol" }
chia-protocol = { version = "0.5.0", path = "../chia-protocol" }
chia-traits = { path = "../chia-traits" }
clvm-utils = { path = "../clvm-utils" }
clvm-traits = { version = "=0.3.3", path = "../clvm-traits" }
chia-wallet = { version = "=0.4.0", path = "../chia-wallet" }
chia-wallet = { version = "=0.5.0", path = "../chia-wallet" }
chia-bls = { version = "0.4.0", path = "../chia-bls" }
clvmr = { version = "0.4.0", features = ["counters"] }
chia = { version = "0.4.0", path = ".." }
chia = { version = "0.5.0", path = ".." }
rusqlite = { version = "=0.30.0", features = ["bundled"] }
clap = { version = "=4.3.9", features = ["derive"] }
zstd = "=0.12.3"
Expand Down
4 changes: 2 additions & 2 deletions chia-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-traits"
version = "0.3.3"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia traits for Streamable types (chia's serialization format)"
Expand All @@ -11,7 +11,7 @@ py-bindings = ["dep:pyo3", "dep:chia_py_streamable_macro"]

[dependencies]
pyo3 = { version = "0.19.0", features = ["multiple-pymethods"], optional = true }
chia_py_streamable_macro = { version = "0.3.0", path = "../chia_py_streamable_macro", optional = true }
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
chia_streamable_macro = { version = "0.3.0", path = "../chia_streamable_macro" }
sha2 = "0.10.8"
hex = "0.4.3"
Expand Down
4 changes: 2 additions & 2 deletions chia-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-wallet"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia primitives needed for building wallets."
Expand All @@ -16,7 +16,7 @@ hex-literal = "0.4.1"
clvm-utils = { version = "0.4.0", path = "../clvm-utils" }
clvm-traits = { version = "0.3.3", path = "../clvm-traits", features = ["chia-bls"] }
chia-bls = { version = "0.4.0", path = "../chia-bls" }
chia-protocol = { version = "0.4.0", path = "../chia-protocol" }
chia-protocol = { version = "0.5.0", path = "../chia-protocol" }
arbitrary = "1.3.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion chia_py_streamable_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia_py_streamable_macro"
version = "0.3.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = "Derive macro to create python bindings for Chia types"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-fuzz"
version = "0.4.0"
version = "0.5.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions wheel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia_rs"
version = "0.4.0"
version = "0.5.0"
authors = ["Richard Kiss <him@richardkiss.com>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,12 +19,12 @@ clvmr = "0.4.0"
hex = "0.4.3"
sha2 = "0.10.8"
pyo3 = { version = "=0.19.0", features = ["extension-module", "multiple-pymethods"] }
chia = { version = "=0.4.0", path = "..", features = ["py-bindings"] }
chia = { version = "=0.5.0", path = "..", features = ["py-bindings"] }
chia-bls = { version = "=0.4.0", path = "../chia-bls", features = ["py-bindings"] }
chia-protocol = { version = "=0.4.0", path = "../chia-protocol", features = ["py-bindings"] }
chia-traits = { version = "=0.3.3", path = "../chia-traits", features = ["py-bindings"] }
chia-protocol = { version = "=0.5.0", path = "../chia-protocol", features = ["py-bindings"] }
chia-traits = { version = "=0.5.0", path = "../chia-traits", features = ["py-bindings"] }
clvm-traits = { version = "=0.3.3", path = "../clvm-traits", features = ["derive", "py-bindings"] }
chia_py_streamable_macro = { version = "=0.3.0", path = "../chia_py_streamable_macro" }
chia_py_streamable_macro = { version = "=0.5.0", path = "../chia_py_streamable_macro" }
chia_streamable_macro = { version = "=0.3.0", path = "../chia_streamable_macro" }

# See `../Cargo.toml` for more information on why this is necessary.
Expand Down
Loading