Skip to content

Commit

Permalink
up to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jack60612 committed Jul 11, 2024
1 parent c0ccc51 commit b036d5d
Show file tree
Hide file tree
Showing 22 changed files with 83 additions and 83 deletions.
84 changes: 42 additions & 42 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia"
version = "0.10.0"
version = "0.11.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 @@ -87,19 +87,19 @@ clvm-utils = ["dep:clvm-utils"]
lto = "thin"

[workspace.dependencies]
chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version = "0.10.0" }
chia_streamable_macro = { path = "./crates/chia_streamable_macro", version = "0.10.0" }
chia-bls = { path = "./crates/chia-bls", version = "0.10.0" }
chia-client = { path = "./crates/chia-client", version = "0.10.0" }
chia-consensus = { path = "./crates/chia-consensus", version = "0.10.0" }
chia-protocol = { path = "./crates/chia-protocol", version = "0.10.0" }
chia-ssl = { path = "./crates/chia-ssl", version = "0.10.0" }
chia-traits = { path = "./crates/chia-traits", version = "0.10.0" }
chia-puzzles = { path = "./crates/chia-puzzles", version = "0.10.0" }
clvm-traits = { path = "./crates/clvm-traits", version = "0.10.0" }
clvm-utils = { path = "./crates/clvm-utils", version = "0.10.0" }
clvm-derive = { path = "./crates/clvm-derive", version = "0.10.0" }
chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.10.0" }
chia_py_streamable_macro = { path = "./crates/chia_py_streamable_macro", version = "0.11.0" }
chia_streamable_macro = { path = "./crates/chia_streamable_macro", version = "0.11.0" }
chia-bls = { path = "./crates/chia-bls", version = "0.11.0" }
chia-client = { path = "./crates/chia-client", version = "0.11.0" }
chia-consensus = { path = "./crates/chia-consensus", version = "0.11.0" }
chia-protocol = { path = "./crates/chia-protocol", version = "0.11.0" }
chia-ssl = { path = "./crates/chia-ssl", version = "0.11.0" }
chia-traits = { path = "./crates/chia-traits", version = "0.11.0" }
chia-puzzles = { path = "./crates/chia-puzzles", version = "0.11.0" }
clvm-traits = { path = "./crates/clvm-traits", version = "0.11.0" }
clvm-utils = { path = "./crates/clvm-utils", version = "0.11.0" }
clvm-derive = { path = "./crates/clvm-derive", version = "0.11.0" }
chia-fuzz = { path = "./crates/chia-consensus/fuzz", version = "0.11.0" }
blst = { version = "0.3.12", features = ["portable"] }
clvmr = "0.7.0"
syn = "2.0.70"
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
description = "BLS signature, verification and aggregation functions for the Chia blockchain"
Expand Down
4 changes: 2 additions & 2 deletions 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.10.0"
version = "0.11.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand All @@ -13,7 +13,7 @@ workspace = true

[dependencies]
libfuzzer-sys = { workspace = true }
pyo3 = { workspace = true, features = ["auto-initialize"]}
pyo3 = { workspace = true, features = ["auto-initialize"] }
chia-bls = { workspace = true }

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia light client and async peer connections."
Expand Down
4 changes: 2 additions & 2 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.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand Down Expand Up @@ -36,7 +36,7 @@ num-traits = { workspace = true }
rstest = { workspace = true }
text-diff = { workspace = true }
criterion = { workspace = true }
rand = { workspace = true, features = [ "small_rng" ] }
rand = { workspace = true, features = ["small_rng"] }

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-consensus/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-fuzz"
version = "0.10.0"
version = "0.11.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-protocol/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-protocol-fuzz"
version = "0.10.0"
version = "0.11.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion 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.10.0"
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia primitives needed for building wallets."
Expand Down
Loading

0 comments on commit b036d5d

Please sign in to comment.