Skip to content

Commit

Permalink
Merge pull request #340 from Chia-Network/bump-0.3.1
Browse files Browse the repository at this point in the history
Bump to 0.3.1
  • Loading branch information
Rigidity authored Dec 8, 2023
2 parents 9ae339b + cc4e79b commit df42e17
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 53 deletions.
72 changes: 36 additions & 36 deletions Cargo.lock

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

6 changes: 3 additions & 3 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.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Utility functions and types used by the Chia blockchain full node"
Expand All @@ -44,8 +44,8 @@ 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.3.0", path = "chia-protocol" }
chia-wallet = { version = "=0.3.0", path = "chia-wallet" }
chia-protocol = { version = "=0.3.1", path = "chia-protocol" }
chia-wallet = { version = "=0.3.1", path = "chia-wallet" }
hex-literal = "0.4.1"
thiserror = "1.0.44"

Expand Down
2 changes: 1 addition & 1 deletion chia-bls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-bls"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "BLS signature, verification and aggregation funcions for the Chia blockchain"
Expand Down
2 changes: 1 addition & 1 deletion chia-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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.3.0", path = "../chia-protocol" }
chia-protocol = { version = "0.3.1", 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"
Expand Down
4 changes: 2 additions & 2 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.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
Expand All @@ -21,7 +21,7 @@ clvmr = "=0.3.0"
chia-traits = { version = "=0.3.0", path = "../chia-traits" }
clvm-traits = { version = "=0.2.14", features = ["derive"] }
clvm-utils = { version = "=0.3.0", path = "../clvm-utils" }
chia-bls = { version = "=0.3.0", path = "../chia-bls" }
chia-bls = { version = "=0.3.1", path = "../chia-bls" }
arbitrary = { version = "1.3.0", features = ["derive"] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions chia-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0", path = "../chia-protocol" }
chia-protocol = { version = "0.3.1", path = "../chia-protocol" }
chia-traits = { path = "../chia-traits" }
clvm-utils = { path = "../clvm-utils" }
clvm-traits = { version = "=0.2.14" }
chia-wallet = { version = "=0.3.0", path = "../chia-wallet" }
chia-wallet = { version = "=0.3.1", path = "../chia-wallet" }
clvmr = { version = "=0.3.0", features = ["counters"] }
chia = { version = "0.3.0", path = ".." }
chia = { version = "0.3.1", path = ".." }
rusqlite = { version = "=0.30.0", features = ["bundled"] }
clap = { version = "=4.3.9", features = ["derive"] }
zstd = "=0.12.3"
Expand Down
2 changes: 1 addition & 1 deletion chia-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-wallet"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Chia primitives needed for building wallets."
Expand Down
4 changes: 2 additions & 2 deletions clvm-traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clvm-traits"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = "Traits for encoding and decoding CLVM objects."
Expand All @@ -19,7 +19,7 @@ py-bindings = ["dep:pyo3"]
[dependencies]
pyo3 = { version = ">=0.19.0", optional = true }
clvm-derive = { version = "0.2.14", path = "../clvm-derive", optional = true }
chia-bls = { version = "0.3.0", path = "../chia-bls", optional = true }
chia-bls = { version = "0.3.1", path = "../chia-bls", optional = true }
num-bigint = "0.4.3"
thiserror = "1.0.44"

Expand Down
8 changes: 4 additions & 4 deletions wheel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia_rs"
version = "0.3.0"
version = "0.3.1"
authors = ["Richard Kiss <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,9 +19,9 @@ 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.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 = { version = "=0.3.1", path = "..", features = ["py-bindings"] }
chia-bls = { version = "=0.3.1", path = "../chia-bls", features = ["py-bindings"] }
chia-protocol = { version = "=0.3.1", 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.3.0", path = "../chia_py_streamable_macro" }
Expand Down

0 comments on commit df42e17

Please sign in to comment.