Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bayk committed Sep 18, 2024
1 parent 7f49c0a commit cd110b3
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 35 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_wallet"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -36,12 +36,12 @@ funty = "=1.1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
shlex = "1.3.0"

grin_wallet_api = { path = "./api", version = "5.3.1" }
grin_wallet_impls = { path = "./impls", version = "5.3.1" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.1" }
grin_wallet_controller = { path = "./controller", version = "5.3.1" }
grin_wallet_config = { path = "./config", version = "5.3.1" }
grin_wallet_util = { path = "./util", version = "5.3.1" }
grin_wallet_api = { path = "./api", version = "5.3.2" }
grin_wallet_impls = { path = "./impls", version = "5.3.2" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.2" }
grin_wallet_controller = { path = "./controller", version = "5.3.2" }
grin_wallet_config = { path = "./config", version = "5.3.2" }
grin_wallet_util = { path = "./util", version = "5.3.2" }

[build-dependencies]
built = { version = "0.4", features = ["git2"]}
Expand Down
10 changes: 5 additions & 5 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_api"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Grin Wallet API"
license = "Apache-2.0"
Expand All @@ -24,10 +24,10 @@ ed25519-dalek = "1.0.0-pre.4"
colored = "1.6"
x25519-dalek = "0.6"

grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" }
grin_wallet_config = { path = "../config", version = "5.3.1" }
grin_wallet_impls = { path = "../impls", version = "5.3.1" }
grin_wallet_util = { path = "../util", version = "5.3.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_impls = { path = "../impls", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.2" }

[dev-dependencies]
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_config"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -17,7 +17,7 @@ toml = "0.5"
serde_derive = "1"
thiserror = "1"

grin_wallet_util = { path = "../util", version = "5.3.1" }
grin_wallet_util = { path = "../util", version = "5.3.2" }

[dev-dependencies]
pretty_assertions = "0.6"
12 changes: 6 additions & 6 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_controller"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Controllers for grin wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -36,11 +36,11 @@ wagyu-ethereum = { git = "https://github.com/mwcproject/wagyu-ethereum", branch
libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }

grin_wallet_util = { path = "../util", version = "5.3.1" }
grin_wallet_api = { path = "../api", version = "5.3.1" }
grin_wallet_impls = { path = "../impls", version = "5.3.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" }
grin_wallet_config = { path = "../config", version = "5.3.1" }
grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_api = { path = "../api", version = "5.3.2" }
grin_wallet_impls = { path = "../impls", version = "5.3.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }

[dev-dependencies]
remove_dir_all = "0.7"
8 changes: 4 additions & 4 deletions impls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_impls"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand Down Expand Up @@ -41,9 +41,9 @@ url = "2.1"
libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }

grin_wallet_util = { path = "../util", version = "5.3.1" }
grin_wallet_config = { path = "../config", version = "5.3.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.1" }
grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }

[dev-dependencies]
"remove_dir_all" = "0.7"
6 changes: 3 additions & 3 deletions libwallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_libwallet"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -70,8 +70,8 @@ zcash_primitives = { version = "0.4.0", git = "https://github.com/mwcproject/lib
#zcash_primitives = { path = "../../librustzcash/zcash_primitives", features = ["transparent-inputs"] }


grin_wallet_util = { path = "../util", version = "5.3.1" }
grin_wallet_config = { path = "../config", version = "5.3.1" }
grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }

[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
libc = { version = "0.2.69", default-features = false }
2 changes: 1 addition & 1 deletion util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_util"
version = "5.3.1"
version = "5.3.2"
authors = ["Grin Developers <[email protected]>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
Expand Down

0 comments on commit cd110b3

Please sign in to comment.