Skip to content

Commit

Permalink
Merge pull request #539 from Chia-Network/bump-0.9.0
Browse files Browse the repository at this point in the history
bump versions to 0.9.0
  • Loading branch information
arvidn committed May 23, 2024
2 parents f991bd4 + 7ee1112 commit 3f8a42b
Show file tree
Hide file tree
Showing 17 changed files with 97 additions and 97 deletions.
66 changes: 33 additions & 33 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ members = [

[package]
name = "chia"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "A meta-crate that exports all of the Chia crates in the workspace."
Expand Down Expand Up @@ -60,15 +60,15 @@ clvm-traits = ["dep:clvm-traits"]
clvm-utils = ["dep:clvm-utils"]

[dependencies]
chia-bls = { path = "./crates/chia-bls", version = "0.8.0", optional = true }
chia-client = { path = "./crates/chia-client", version = "0.8.0", optional = true }
chia-consensus = { path = "./crates/chia-consensus", version = "0.8.0", optional = true }
chia-protocol = { path = "./crates/chia-protocol", version = "0.8.0", optional = true }
chia-bls = { path = "./crates/chia-bls", version = "0.9.0", optional = true }
chia-client = { path = "./crates/chia-client", version = "0.9.0", optional = true }
chia-consensus = { path = "./crates/chia-consensus", version = "0.9.0", optional = true }
chia-protocol = { path = "./crates/chia-protocol", version = "0.9.0", optional = true }
chia-ssl = { path = "./crates/chia-ssl", version = "0.7.0", optional = true }
chia-traits = { path = "./crates/chia-traits", version = "0.8.0", optional = true }
chia-puzzles = { path = "./crates/chia-puzzles", version = "0.8.0", optional = true }
clvm-traits = { path = "./crates/clvm-traits", version = "0.8.0", optional = true }
clvm-utils = { path = "./crates/clvm-utils", version = "0.8.0", optional = true }
chia-traits = { path = "./crates/chia-traits", version = "0.9.0", optional = true }
chia-puzzles = { path = "./crates/chia-puzzles", version = "0.9.0", optional = true }
clvm-traits = { path = "./crates/clvm-traits", version = "0.9.0", optional = true }
clvm-utils = { path = "./crates/clvm-utils", version = "0.9.0", optional = true }

[profile.release]
lto = "thin"
Expand Down
6 changes: 3 additions & 3 deletions crates/chia-bls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-bls"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "BLS signature, verification and aggregation funcions for the Chia blockchain"
Expand All @@ -13,8 +13,8 @@ py-bindings = ["dep:pyo3", "chia_py_streamable_macro", "chia-traits/py-bindings"
arbitrary = ["dep:arbitrary"]

[dependencies]
chia-traits = { version = "0.8.0", path = "../chia-traits" }
chia_py_streamable_macro = { version = "0.7.0", path = "../chia_py_streamable_macro", optional = true }
chia-traits = { version = "0.9.0", path = "../chia-traits" }
chia_py_streamable_macro = { version = "0.9.0", path = "../chia_py_streamable_macro", optional = true }
tiny-bip39 = "1.0.0"
anyhow = "1.0.71"
sha2 = "0.10.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-bls/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-bls-fuzz"
version = "0.0.0"
version = "0.9.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions crates/chia-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-client"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia light client and async peer connections."
Expand All @@ -9,8 +9,8 @@ homepage = "https://github.com/Chia-Network/chia_rs"
repository = "https://github.com/Chia-Network/chia_rs"

[dependencies]
chia-protocol = { version = "0.8.0", path = "../chia-protocol" }
chia-traits = { version = "0.8.0", path = "../chia-traits" }
chia-protocol = { version = "0.9.0", path = "../chia-protocol" }
chia-traits = { version = "0.9.0", path = "../chia-traits" }
tokio = { version = "1.32.0", features = ["rt", "sync"] }
tokio-tungstenite = "0.21.0"
futures-util = "0.3.28"
Expand Down
18 changes: 9 additions & 9 deletions crates/chia-consensus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-consensus"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -17,14 +17,14 @@ hex = "0.4.3"
pyo3 = { version = "0.21.2", optional = true }
sha2 = "0.10.8"
chia_streamable_macro = { version = "0.8.0", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "0.7.0", path = "../chia_py_streamable_macro", optional = true }
clvm-utils = { version = "0.8.0", path = "../clvm-utils" }
chia-traits = { version = "0.8.0", path = "../chia-traits" }
clvm-traits = { version = "0.8.0", path = "../clvm-traits" }
clvm-derive = { version = "0.6.0", path = "../clvm-derive" }
chia-protocol = { version = "0.8.0", path = "../chia-protocol" }
chia-puzzles = { version = "0.8.0", path = "../chia-puzzles" }
chia-bls = { version = "0.8.0", path = "../chia-bls" }
chia_py_streamable_macro = { version = "0.9.0", path = "../chia_py_streamable_macro", optional = true }
clvm-utils = { version = "0.9.0", path = "../clvm-utils" }
chia-traits = { version = "0.9.0", path = "../chia-traits" }
clvm-traits = { version = "0.9.0", path = "../clvm-traits" }
clvm-derive = { version = "0.9.0", path = "../clvm-derive" }
chia-protocol = { version = "0.9.0", path = "../chia-protocol" }
chia-puzzles = { version = "0.9.0", path = "../chia-puzzles" }
chia-bls = { version = "0.9.0", path = "../chia-bls" }
hex-literal = "0.4.1"
thiserror = "1.0.44"

Expand Down
12 changes: 6 additions & 6 deletions crates/chia-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-protocol"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
Expand All @@ -17,12 +17,12 @@ pyo3 = { version = "0.21.2", features = ["multiple-pymethods", "num-bigint"], op
sha2 = "0.10.8"
hex = "0.4.3"
chia_streamable_macro = { version = "0.8.0", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "0.7.0", path = "../chia_py_streamable_macro", optional = true }
chia_py_streamable_macro = { version = "0.9.0", path = "../chia_py_streamable_macro", optional = true }
clvmr = "0.7.0"
chia-traits = { version = "0.8.0", path = "../chia-traits" }
clvm-traits = { version = "0.8.0", path = "../clvm-traits", features = ["derive"] }
clvm-utils = { version = "0.8.0", path = "../clvm-utils" }
chia-bls = { version = "0.8.0", path = "../chia-bls" }
chia-traits = { version = "0.9.0", path = "../chia-traits" }
clvm-traits = { version = "0.9.0", path = "../clvm-traits", features = ["derive"] }
clvm-utils = { version = "0.9.0", path = "../clvm-utils" }
chia-bls = { version = "0.9.0", path = "../chia-bls" }
arbitrary = { version = "1.3.0", features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/chia-puzzles/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-puzzles"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia primitives needed for building wallets."
Expand All @@ -16,10 +16,10 @@ clvmr = "0.7.0"
sha2 = "0.10.8"
num-bigint = "0.4.3"
hex-literal = "0.4.1"
clvm-utils = { version = "0.8.0", path = "../clvm-utils" }
clvm-traits = { version = "0.8.0", path = "../clvm-traits", features = ["chia-bls"] }
chia-bls = { version = "0.8.0", path = "../chia-bls" }
chia-protocol = { version = "0.8.0", path = "../chia-protocol" }
clvm-utils = { version = "0.9.0", path = "../clvm-utils" }
clvm-traits = { version = "0.9.0", path = "../clvm-traits", features = ["chia-bls"] }
chia-bls = { version = "0.9.0", path = "../chia-bls" }
chia-protocol = { version = "0.9.0", path = "../chia-protocol" }
arbitrary = { version = "1.3.0", features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/chia-puzzles/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-puzzles-fuzz"
version = "0.8.0"
version = "0.9.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand All @@ -13,7 +13,7 @@ libfuzzer-sys = "0.4"
clvmr = "0.7.0"
pyo3 = { version = "0.21.2", features = ["auto-initialize"]}
chia-puzzles = { path = "..", features = ["arbitrary"] }
clvm-traits = { version = "0.8.0", path = "../../clvm-traits" }
clvm-traits = { version = "0.9.0", path = "../../clvm-traits" }

[[bin]]
name = "roundtrip"
Expand Down
Loading

0 comments on commit 3f8a42b

Please sign in to comment.