Skip to content

Commit 1bc18f7

Browse files
authored
Merge pull request #387 from Chia-Network/bump-0.5.1
Bump to 0.5.1
2 parents 64e1dc1 + 77caa49 commit 1bc18f7

File tree

14 files changed

+71
-71
lines changed

14 files changed

+71
-71
lines changed

Cargo.lock

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

Cargo.toml

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

2626
[package]
2727
name = "chia"
28-
version = "0.5.0"
28+
version = "0.5.1"
2929
edition = "2021"
3030
license = "Apache-2.0"
3131
description = "Utility functions and types used by the Chia blockchain full node"
@@ -40,12 +40,12 @@ py-bindings = ["dep:pyo3"]
4040
clvmr = "0.5.0"
4141
hex = "0.4.3"
4242
pyo3 = { version = ">=0.19.0", optional = true }
43-
clvm-utils = { version = "0.5.0", path = "clvm-utils" }
44-
chia-traits = { version = "0.5.0", path = "chia-traits" }
45-
clvm-traits = { version = "0.5.0", path = "clvm-traits" }
43+
clvm-utils = { version = "0.5.1", path = "clvm-utils" }
44+
chia-traits = { version = "0.5.1", path = "chia-traits" }
45+
clvm-traits = { version = "0.5.1", path = "clvm-traits" }
4646
clvm-derive = { version = "0.2.14", path = "clvm-derive" }
47-
chia-protocol = { version = "0.5.0", path = "chia-protocol" }
48-
chia-wallet = { version = "0.5.0", path = "chia-wallet" }
47+
chia-protocol = { version = "0.5.1", path = "chia-protocol" }
48+
chia-wallet = { version = "0.5.1", path = "chia-wallet" }
4949
hex-literal = "0.4.1"
5050
thiserror = "1.0.44"
5151

chia-bls/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-bls"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "BLS signature, verification and aggregation funcions for the Chia blockchain"
@@ -12,8 +12,8 @@ repository = "https://github.com/Chia-Network/chia_rs/chia-bls/"
1212
py-bindings = ["dep:pyo3", "chia_py_streamable_macro", "chia-traits/py-bindings"]
1313

1414
[dependencies]
15-
chia-traits = { version = "0.5.0", path = "../chia-traits" }
16-
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
15+
chia-traits = { version = "0.5.1", path = "../chia-traits" }
16+
chia_py_streamable_macro = { version = "0.5.1", path = "../chia_py_streamable_macro", optional = true }
1717
tiny-bip39 = "1.0.0"
1818
anyhow = "1.0.71"
1919
sha2 = "0.10.8"

chia-client/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-client"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia light client and async peer connections."
@@ -9,8 +9,8 @@ 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.5.0", path = "../chia-protocol" }
13-
chia-traits = { version = "0.5.0", path = "../chia-traits" }
12+
chia-protocol = { version = "0.5.1", path = "../chia-protocol" }
13+
chia-traits = { version = "0.5.1", path = "../chia-traits" }
1414
tokio = { version = "1.32.0", features = ["rt", "sync"] }
1515
tokio-tungstenite = "0.21.0"
1616
futures-util = "0.3.28"

chia-protocol/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-protocol"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia network protocol message types"
@@ -16,12 +16,12 @@ pyo3 = { version = "0.19.0", features = ["multiple-pymethods", "num-bigint"], op
1616
sha2 = "0.10.8"
1717
hex = "0.4.3"
1818
chia_streamable_macro = { version = "0.3.0", path = "../chia_streamable_macro" }
19-
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
19+
chia_py_streamable_macro = { version = "0.5.1", path = "../chia_py_streamable_macro", optional = true }
2020
clvmr = "0.5.0"
21-
chia-traits = { version = "0.5.0", path = "../chia-traits" }
22-
clvm-traits = { version = "0.5.0", path = "../clvm-traits", features = ["derive"] }
23-
clvm-utils = { version = "0.5.0", path = "../clvm-utils" }
24-
chia-bls = { version = "0.5.0", path = "../chia-bls" }
21+
chia-traits = { version = "0.5.1", path = "../chia-traits" }
22+
clvm-traits = { version = "0.5.1", path = "../clvm-traits", features = ["derive"] }
23+
clvm-utils = { version = "0.5.1", path = "../clvm-utils" }
24+
chia-bls = { version = "0.5.1", path = "../chia-bls" }
2525
arbitrary = { version = "1.3.0", features = ["derive"] }
2626

2727
[dev-dependencies]

chia-tools/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-tools"
3-
version = "0.5.0"
3+
version = "0.5.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.5.0", path = "../chia-protocol" }
13-
chia-traits = { version = "=0.5.0", path = "../chia-traits" }
14-
clvm-utils = { version = "=0.5.0", path = "../clvm-utils" }
15-
clvm-traits = { version = "=0.5.0", path = "../clvm-traits" }
16-
chia-wallet = { version = "=0.5.0", path = "../chia-wallet" }
17-
chia-bls = { version = "=0.5.0", path = "../chia-bls" }
12+
chia-protocol = { version = "=0.5.1", path = "../chia-protocol" }
13+
chia-traits = { version = "=0.5.1", path = "../chia-traits" }
14+
clvm-utils = { version = "=0.5.1", path = "../clvm-utils" }
15+
clvm-traits = { version = "=0.5.1", path = "../clvm-traits" }
16+
chia-wallet = { version = "=0.5.1", path = "../chia-wallet" }
17+
chia-bls = { version = "=0.5.1", path = "../chia-bls" }
1818
clvmr = { version = "0.5.0", features = ["counters"] }
19-
chia = { version = "=0.5.0", path = ".." }
19+
chia = { version = "=0.5.1", path = ".." }
2020
rusqlite = { version = "=0.30.0", features = ["bundled"] }
2121
clap = { version = "=4.3.9", features = ["derive"] }
2222
zstd = "=0.12.3"

chia-traits/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-traits"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia traits for Streamable types (chia's serialization format)"
@@ -11,7 +11,7 @@ py-bindings = ["dep:pyo3", "dep:chia_py_streamable_macro"]
1111

1212
[dependencies]
1313
pyo3 = { version = "0.19.0", features = ["multiple-pymethods"], optional = true }
14-
chia_py_streamable_macro = { version = "0.5.0", path = "../chia_py_streamable_macro", optional = true }
14+
chia_py_streamable_macro = { version = "0.5.1", path = "../chia_py_streamable_macro", optional = true }
1515
chia_streamable_macro = { version = "0.3.0", path = "../chia_streamable_macro" }
1616
sha2 = "0.10.8"
1717
hex = "0.4.3"

chia-wallet/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chia-wallet"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Chia primitives needed for building wallets."
@@ -13,10 +13,10 @@ clvmr = "0.5.0"
1313
sha2 = "0.10.8"
1414
num-bigint = "0.4.3"
1515
hex-literal = "0.4.1"
16-
clvm-utils = { version = "0.5.0", path = "../clvm-utils" }
17-
clvm-traits = { version = "0.5.0", path = "../clvm-traits", features = ["chia-bls"] }
18-
chia-bls = { version = "0.5.0", path = "../chia-bls" }
19-
chia-protocol = { version = "0.5.0", path = "../chia-protocol" }
16+
clvm-utils = { version = "0.5.1", path = "../clvm-utils" }
17+
clvm-traits = { version = "0.5.1", path = "../clvm-traits", features = ["chia-bls"] }
18+
chia-bls = { version = "0.5.1", path = "../chia-bls" }
19+
chia-protocol = { version = "0.5.1", path = "../chia-protocol" }
2020
arbitrary = "1.3.0"
2121

2222
[dev-dependencies]

chia-wallet/fuzz/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-fuzz"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Automatically generated"]
55
publish = false
66
edition = "2021"
@@ -13,7 +13,7 @@ libfuzzer-sys = "0.4"
1313
clvmr = "0.5.0"
1414
pyo3 = { version = ">=0.19.0", features = ["auto-initialize"]}
1515
chia-wallet = { path = ".." }
16-
clvm-traits = { version = "=0.5.0", path = "../../clvm-traits" }
16+
clvm-traits = { version = "=0.5.1", path = "../../clvm-traits" }
1717

1818
[[bin]]
1919
name = "roundtrip"

chia_py_streamable_macro/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_py_streamable_macro"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Derive macro to create python bindings for Chia types"

clvm-traits/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clvm-traits"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Traits for encoding and decoding CLVM objects."
@@ -20,7 +20,7 @@ py-bindings = ["dep:pyo3"]
2020
pyo3 = { version = ">=0.19.0", optional = true }
2121
clvmr = "0.5.0"
2222
clvm-derive = { version = "0.2.14", path = "../clvm-derive", optional = true }
23-
chia-bls = { version = "0.5.0", path = "../chia-bls", optional = true }
23+
chia-bls = { version = "0.5.1", path = "../chia-bls", optional = true }
2424
num-bigint = "0.4.3"
2525
thiserror = "1.0.44"
2626

clvm-utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clvm-utils"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Utility functions for processing clvm programs and structures"
@@ -10,7 +10,7 @@ repository = "https://github.com/Chia-Network/chia_rs/clvm-utils"
1010

1111
[dependencies]
1212
clvmr = "0.5.0"
13-
clvm-traits = { version = "0.5.0", path = "../clvm-traits" }
13+
clvm-traits = { version = "0.5.1", path = "../clvm-traits" }
1414

1515
[dev-dependencies]
1616
hex = "0.4.3"

fuzz/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-fuzz"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
authors = ["Automatically generated"]
55
publish = false
66
edition = "2021"

0 commit comments

Comments
 (0)