Skip to content

Commit bc5ab2d

Browse files
authored
Merge pull request #404 from Chia-Network/bump-0.4.1
bump version
2 parents a73dd4a + 4e9abcf commit bc5ab2d

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = ["wheel"]
2525

2626
[package]
2727
name = "chia"
28-
version = "0.4.0"
28+
version = "0.4.1"
2929
edition = "2021"
3030
license = "Apache-2.0"
3131
description = "Utility functions and types used by the Chia blockchain full node"
@@ -44,8 +44,8 @@ clvm-utils = { version = "0.4.0", path = "clvm-utils" }
4444
chia-traits = { version = "0.3.3", path = "chia-traits" }
4545
clvm-traits = { version = "0.3.3", path = "clvm-traits" }
4646
clvm-derive = { version = "0.2.14", path = "clvm-derive" }
47-
chia-protocol = { version = "0.4.0", path = "chia-protocol" }
48-
chia-wallet = { version = "0.4.0", path = "chia-wallet" }
47+
chia-protocol = { version = "0.4.1", path = "chia-protocol" }
48+
chia-wallet = { version = "0.4.1", path = "chia-wallet" }
4949
hex-literal = "0.4.1"
5050
thiserror = "1.0.44"
5151

chia-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-client"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia light client and async peer connections."
@@ -9,7 +9,7 @@ homepage = "https://github.com/Chia-Network/chia_rs/chia-client/"
99
repository = "https://github.com/Chia-Network/chia_rs/chia-client/"
1010

1111
[dependencies]
12-
chia-protocol = { version = "0.4.0", path = "../chia-protocol" }
12+
chia-protocol = { version = "0.4.1", path = "../chia-protocol" }
1313
chia-traits = { version = "0.3.3", path = "../chia-traits" }
1414
tokio = { version = "1.32.0", features = ["rt", "sync"] }
1515
tokio-tungstenite = "0.21.0"

chia-protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-protocol"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia network protocol message types"

chia-tools/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-tools"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Utility functions and types used by the Chia blockchain full node"
@@ -9,14 +9,14 @@ homepage = "https://github.com/Chia-Network/chia_rs/chia-tools"
99
repository = "https://github.com/Chia-Network/chia_rs/chia-tools"
1010

1111
[dependencies]
12-
chia-protocol = { version = "0.4.0", path = "../chia-protocol" }
12+
chia-protocol = { version = "0.4.1", path = "../chia-protocol" }
1313
chia-traits = { path = "../chia-traits" }
1414
clvm-utils = { path = "../clvm-utils" }
1515
clvm-traits = { version = "=0.3.3", path = "../clvm-traits" }
16-
chia-wallet = { version = "=0.4.0", path = "../chia-wallet" }
16+
chia-wallet = { version = "=0.4.1", path = "../chia-wallet" }
1717
chia-bls = { version = "0.4.0", path = "../chia-bls" }
1818
clvmr = { version = "0.4.0", features = ["counters"] }
19-
chia = { version = "0.4.0", path = ".." }
19+
chia = { version = "0.4.1", path = ".." }
2020
rusqlite = { version = "=0.30.0", features = ["bundled"] }
2121
clap = { version = "=4.3.9", features = ["derive"] }
2222
zstd = "=0.12.3"

chia-wallet/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-wallet"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia primitives needed for building wallets."
@@ -16,7 +16,7 @@ hex-literal = "0.4.1"
1616
clvm-utils = { version = "0.4.0", path = "../clvm-utils" }
1717
clvm-traits = { version = "0.3.3", path = "../clvm-traits", features = ["chia-bls"] }
1818
chia-bls = { version = "0.4.0", path = "../chia-bls" }
19-
chia-protocol = { version = "0.4.0", path = "../chia-protocol" }
19+
chia-protocol = { version = "0.4.1", path = "../chia-protocol" }
2020
arbitrary = "1.3.0"
2121

2222
[dev-dependencies]

wheel/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia_rs"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["Richard Kiss <him@richardkiss.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -19,9 +19,9 @@ clvmr = "0.4.0"
1919
hex = "0.4.3"
2020
sha2 = "0.10.8"
2121
pyo3 = { version = "=0.19.0", features = ["extension-module", "multiple-pymethods"] }
22-
chia = { version = "=0.4.0", path = "..", features = ["py-bindings"] }
22+
chia = { version = "=0.4.1", path = "..", features = ["py-bindings"] }
2323
chia-bls = { version = "=0.4.0", path = "../chia-bls", features = ["py-bindings"] }
24-
chia-protocol = { version = "=0.4.0", path = "../chia-protocol", features = ["py-bindings"] }
24+
chia-protocol = { version = "=0.4.1", path = "../chia-protocol", features = ["py-bindings"] }
2525
chia-traits = { version = "=0.3.3", path = "../chia-traits", features = ["py-bindings"] }
2626
clvm-traits = { version = "=0.3.3", path = "../clvm-traits", features = ["derive", "py-bindings"] }
2727
chia_py_streamable_macro = { version = "=0.3.0", path = "../chia_py_streamable_macro" }

0 commit comments

Comments
 (0)