Skip to content

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Dec 6, 2023
1 parent 9984afb commit d8e8469
Show file tree
Hide file tree
Showing 16 changed files with 58 additions and 58 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -40,12 +40,12 @@ py-bindings = ["dep:pyo3"]
clvmr = "=0.3.0"
hex = "0.4.3"
pyo3 = { version = ">=0.19.0", optional = true }
clvm-utils = { version = "=0.2.14", path = "clvm-utils" }
chia-traits = { version = "=0.2.14", path = "chia-traits" }
clvm-utils = { version = "=0.3.0", path = "clvm-utils" }
chia-traits = { version = "=0.3.0", path = "chia-traits" }
clvm-traits = { version = "=0.2.14" }
clvm-derive = { version = "=0.2.14", path = "clvm-derive" }
chia-protocol = { version = "=0.2.14", path = "chia-protocol" }
chia-wallet = { version = "=0.2.14", path = "chia-wallet" }
chia-protocol = { version = "=0.3.0", path = "chia-protocol" }
chia-wallet = { version = "=0.3.0", path = "chia-wallet" }
hex-literal = "0.4.1"
thiserror = "1.0.44"

Expand Down
6 changes: 3 additions & 3 deletions chia-bls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-bls"
version = "0.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "BLS signature, verification and aggregation funcions for the Chia blockchain"
Expand All @@ -12,9 +12,9 @@ repository = "https://github.com/Chia-Network/chia_rs/chia-bls/"
py-bindings = ["dep:pyo3", "chia_py_streamable_macro", "chia-traits/py-bindings", "clvm-traits/py-bindings"]

[dependencies]
chia-traits = { version = "=0.2.14", path = "../chia-traits" }
chia-traits = { version = "=0.3.0", path = "../chia-traits" }
clvm-traits = { version = "=0.2.14", features = ["derive"] }
chia_py_streamable_macro = { version = "=0.2.14", path = "../chia_py_streamable_macro", optional = true }
chia_py_streamable_macro = { version = "=0.3.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.2.14", path = "../chia-protocol" }
chia-traits = { version = "0.2.14", path = "../chia-traits" }
chia-protocol = { version = "0.3.0", path = "../chia-protocol" }
chia-traits = { version = "0.3.0", path = "../chia-traits" }
tokio = { version = "1.32.0", features = ["rt", "sync"] }
tokio-tungstenite = "0.20.0"
futures-util = "0.3.28"
Expand Down
12 changes: 6 additions & 6 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.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
Expand All @@ -15,13 +15,13 @@ py-bindings = ["dep:pyo3", "dep:chia_py_streamable_macro", "chia-traits/py-bindi
pyo3 = { version = "0.19.0", features = ["multiple-pymethods", "num-bigint"], optional = true }
sha2 = "0.10.8"
hex = "0.4.3"
chia_streamable_macro = { version = "=0.2.14", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "=0.2.14", path = "../chia_py_streamable_macro", optional = true }
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 }
clvmr = "=0.3.0"
chia-traits = { version = "=0.2.14", path = "../chia-traits" }
chia-traits = { version = "=0.3.0", path = "../chia-traits" }
clvm-traits = { version = "=0.2.14", features = ["derive"] }
clvm-utils = { version = "=0.2.14", path = "../clvm-utils" }
chia-bls = { version = "=0.2.14", path = "../chia-bls" }
clvm-utils = { version = "=0.3.0", path = "../clvm-utils" }
chia-bls = { version = "=0.3.0", path = "../chia-bls" }
arbitrary = { version = "1.3.0", features = ["derive"] }

[dev-dependencies]
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.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -9,13 +9,13 @@ 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.2.14", path = "../chia-protocol" }
chia-protocol = { version = "0.3.0", path = "../chia-protocol" }
chia-traits = { path = "../chia-traits" }
clvm-utils = { path = "../clvm-utils" }
clvm-traits = { version = "=0.2.14" }
chia-wallet = { version = "=0.2.14", path = "../chia-wallet" }
chia-wallet = { version = "=0.3.0", path = "../chia-wallet" }
clvmr = { version = "=0.3.0", features = ["counters"] }
chia = { version = "0.2.14", path = ".." }
chia = { version = "0.3.0", path = ".." }
rusqlite = { version = "=0.30.0", features = ["bundled"] }
clap = { version = "=4.3.9", features = ["derive"] }
zstd = "=0.12.3"
Expand Down
6 changes: 3 additions & 3 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.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia traits for Streamable types (chia's serialization format)"
Expand All @@ -11,8 +11,8 @@ 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.2.14", path = "../chia_py_streamable_macro", optional = true }
chia_streamable_macro = { version = "=0.2.14", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "=0.3.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"
thiserror = "1.0.44"
10 changes: 5 additions & 5 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.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Chia primitives needed for building wallets."
Expand All @@ -13,10 +13,10 @@ clvmr = "0.3.0"
sha2 = "0.10.8"
num-bigint = "0.4.3"
hex-literal = "0.4.1"
clvm-utils = { version = "0.2.14", path = "../clvm-utils" }
clvm-traits = { version = "0.2.14" }
chia-bls = { version = "0.2.14", path = "../chia-bls" }
chia-protocol = { version = "0.2.14", path = "../chia-protocol" }
clvm-utils = { version = "0.3.0", path = "../clvm-utils" }
clvm-traits = { version = "=0.2.14" }
chia-bls = { version = "0.3.0", path = "../chia-bls" }
chia-protocol = { version = "0.3.0", path = "../chia-protocol" }
arbitrary = "=1.3.0"

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

[[bin]]
name = "roundtrip"
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.2.14"
version = "0.3.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 chia_streamable_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia_streamable_macro"
version = "0.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Streamable derive macro for serializing/deserializing types in Chia protocol format"
Expand Down
2 changes: 1 addition & 1 deletion clvm-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clvm-traits"
version = "0.2.15"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Traits for encoding and decoding CLVM objects."
Expand Down
4 changes: 2 additions & 2 deletions clvm-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clvm-utils"
version = "0.2.14"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions for processing clvm programs and structures"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/Chia-Network/chia_rs/clvm-utils"

[dependencies]
clvmr = "0.3.0"
clvm-traits = { version = "0.2.14" }
clvm-traits = { version = "=0.2.14" }

[dev-dependencies]
hex = "0.4.3"
2 changes: 1 addition & 1 deletion clvm-utils/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clvm-utils-fuzz"
version = "0.0.0"
version = "0.3.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
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.0.0"
version = "0.3.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"
Expand Down
14 changes: 7 additions & 7 deletions wheel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia_rs"
version = "0.2.14"
version = "0.3.0"
authors = ["Richard Kiss <him@richardkiss.com>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,10 +19,10 @@ clvmr = "=0.3.0"
hex = "0.4.3"
sha2 = "0.10.8"
pyo3 = { version = "=0.19.0", features = ["extension-module", "multiple-pymethods"] }
chia = { version = "=0.2.14", path = "..", features = ["py-bindings"] }
chia-bls = { version = "=0.2.14", path = "../chia-bls", features = ["py-bindings"] }
chia-protocol = { version = "=0.2.14", path = "../chia-protocol", features = ["py-bindings"] }
chia-traits = { version = "=0.2.14", path = "../chia-traits", features = ["py-bindings"] }
chia = { version = "=0.3.0", path = "..", features = ["py-bindings"] }
chia-bls = { version = "=0.3.0", path = "../chia-bls", features = ["py-bindings"] }
chia-protocol = { version = "=0.3.0", path = "../chia-protocol", features = ["py-bindings"] }
chia-traits = { version = "=0.3.0", path = "../chia-traits", features = ["py-bindings"] }
clvm-traits = { version = "=0.2.14", features = ["derive", "py-bindings"] }
chia_py_streamable_macro = { version = "=0.2.14", path = "../chia_py_streamable_macro" }
chia_streamable_macro = { version = "=0.2.14", path = "../chia_streamable_macro" }
chia_py_streamable_macro = { version = "=0.3.0", path = "../chia_py_streamable_macro" }
chia_streamable_macro = { version = "=0.3.0", path = "../chia_streamable_macro" }

0 comments on commit d8e8469

Please sign in to comment.