Skip to content

Commit

Permalink
Merge pull request #404 from Chia-Network/bump-0.4.1
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
arvidn committed Feb 14, 2024
2 parents a73dd4a + 4e9abcf commit bc5ab2d
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 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.4.0"
version = "0.4.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.4.0", path = "clvm-utils" }
chia-traits = { version = "0.3.3", 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.4.1", path = "chia-protocol" }
chia-wallet = { version = "0.4.1", path = "chia-wallet" }
hex-literal = "0.4.1"
thiserror = "1.0.44"

Expand Down
4 changes: 2 additions & 2 deletions chia-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-client"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
license = "Apache-2.0"
description = "Chia light client and async peer connections."
Expand All @@ -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.4.0", path = "../chia-protocol" }
chia-protocol = { version = "0.4.1", path = "../chia-protocol" }
chia-traits = { version = "0.3.3", path = "../chia-traits" }
tokio = { version = "1.32.0", features = ["rt", "sync"] }
tokio-tungstenite = "0.21.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.4.1"
edition = "2021"
license = "Apache-2.0"
description = "Chia network protocol message types"
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.4.1"
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.4.1", 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.4.1", 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.4.1", 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-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.4.1"
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.4.1", path = "../chia-protocol" }
arbitrary = "1.3.0"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 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.4.1"
authors = ["Richard Kiss <him@richardkiss.com>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -19,9 +19,9 @@ 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.4.1", 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-protocol = { version = "=0.4.1", path = "../chia-protocol", features = ["py-bindings"] }
chia-traits = { version = "=0.3.3", 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" }
Expand Down

0 comments on commit bc5ab2d

Please sign in to comment.