Skip to content

Commit 29c8c19

Browse files
author
bay
committed
bumped version
1 parent 802152b commit 29c8c19

File tree

8 files changed

+277
-200
lines changed

8 files changed

+277
-200
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -36,12 +36,12 @@ funty = "=1.1.0"
3636
uuid = { version = "0.8", features = ["serde", "v4"] }
3737
shlex = "1.3.0"
3838

39-
mwc_wallet_api = { path = "./api", version = "5.3.6" }
40-
mwc_wallet_impls = { path = "./impls", version = "5.3.6" }
41-
mwc_wallet_libwallet = { path = "./libwallet", version = "5.3.6" }
42-
mwc_wallet_controller = { path = "./controller", version = "5.3.6" }
43-
mwc_wallet_config = { path = "./config", version = "5.3.6" }
44-
mwc_wallet_util = { path = "./util", version = "5.3.6" }
39+
mwc_wallet_api = { path = "./api", version = "5.3.7" }
40+
mwc_wallet_impls = { path = "./impls", version = "5.3.7" }
41+
mwc_wallet_libwallet = { path = "./libwallet", version = "5.3.7" }
42+
mwc_wallet_controller = { path = "./controller", version = "5.3.7" }
43+
mwc_wallet_config = { path = "./config", version = "5.3.7" }
44+
mwc_wallet_util = { path = "./util", version = "5.3.7" }
4545

4646
[build-dependencies]
4747
built = { version = "0.4", features = ["git2"]}

api/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_api"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Mwc Wallet API"
66
license = "Apache-2.0"
@@ -23,10 +23,10 @@ ed25519-dalek = "1.0.0-pre.4"
2323
easy-jsonrpc-mwc = { git = "https://github.com/mwcproject/easy-jsonrpc-mwc", version = "0.5.5", branch = "master" }
2424
lazy_static = "1.4"
2525

26-
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.6" }
27-
mwc_wallet_config = { path = "../config", version = "5.3.6" }
28-
mwc_wallet_impls = { path = "../impls", version = "5.3.6" }
29-
mwc_wallet_util = { path = "../util", version = "5.3.6" }
26+
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.7" }
27+
mwc_wallet_config = { path = "../config", version = "5.3.7" }
28+
mwc_wallet_impls = { path = "../impls", version = "5.3.7" }
29+
mwc_wallet_util = { path = "../util", version = "5.3.7" }
3030

3131
[dev-dependencies]
3232
serde_json = "1"

config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_config"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Configuration for mwc wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -17,7 +17,7 @@ toml = "0.5"
1717
serde_derive = "1"
1818
thiserror = "1"
1919

20-
mwc_wallet_util = { path = "../util", version = "5.3.6" }
20+
mwc_wallet_util = { path = "../util", version = "5.3.7" }
2121

2222
[dev-dependencies]
2323
pretty_assertions = "0.6"

controller/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_controller"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Controllers for mwc wallet instantiation"
66
license = "Apache-2.0"
@@ -36,11 +36,11 @@ mwc-libp2p = { git = "https://github.com/mwcproject/rust-libp2p", version="0.35.
3636
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
3737
easy-jsonrpc-mwc = { git = "https://github.com/mwcproject/easy-jsonrpc-mwc", version = "0.5.5", branch = "master" }
3838

39-
mwc_wallet_util = { path = "../util", version = "5.3.6" }
40-
mwc_wallet_api = { path = "../api", version = "5.3.6" }
41-
mwc_wallet_impls = { path = "../impls", version = "5.3.6" }
42-
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.6" }
43-
mwc_wallet_config = { path = "../config", version = "5.3.6" }
39+
mwc_wallet_util = { path = "../util", version = "5.3.7" }
40+
mwc_wallet_api = { path = "../api", version = "5.3.7" }
41+
mwc_wallet_impls = { path = "../impls", version = "5.3.7" }
42+
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.7" }
43+
mwc_wallet_config = { path = "../config", version = "5.3.7" }
4444

4545
[dev-dependencies]
4646
remove_dir_all = "0.7"

impls/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_impls"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Concrete types derived from libwallet traits"
66
license = "Apache-2.0"
@@ -41,9 +41,9 @@ url = "2.1"
4141
mwc-libp2p = { git = "https://github.com/mwcproject/rust-libp2p", version="0.35.3", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
4242
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
4343

44-
mwc_wallet_util = { path = "../util", version = "5.3.6" }
45-
mwc_wallet_config = { path = "../config", version = "5.3.6" }
46-
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.6" }
44+
mwc_wallet_util = { path = "../util", version = "5.3.7" }
45+
mwc_wallet_config = { path = "../config", version = "5.3.7" }
46+
mwc_wallet_libwallet = { path = "../libwallet", version = "5.3.7" }
4747

4848
[dev-dependencies]
4949
"remove_dir_all" = "0.7"

libwallet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_libwallet"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -76,8 +76,8 @@ mwc-zcash_primitives = { git = "https://github.com/mwcproject/librustzcash", ver
7676
#zcash_primitives = { path = "../../librustzcash/zcash_primitives", features = ["transparent-inputs"] }
7777

7878

79-
mwc_wallet_util = { path = "../util", version = "5.3.6" }
80-
mwc_wallet_config = { path = "../config", version = "5.3.6" }
79+
mwc_wallet_util = { path = "../util", version = "5.3.7" }
80+
mwc_wallet_config = { path = "../config", version = "5.3.7" }
8181

8282
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
8383
libc = { version = "0.2.69", default-features = false }

util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mwc_wallet_util"
3-
version = "5.3.6"
3+
version = "5.3.7"
44
authors = ["Mwc Developers <[email protected]>"]
55
description = "Util, for generic utilities and to re-export mwc crates"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)