Skip to content

Commit

Permalink
Bump to version 5.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vekamo committed Nov 12, 2024
1 parent bea3137 commit cf1ffa7
Show file tree
Hide file tree
Showing 12 changed files with 69 additions and 69 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -33,14 +33,14 @@ log = "0.4"
term = "0.6"
thiserror = "1"

mwc_api = { path = "./api", version = "5.3.3" }
mwc_config = { path = "./config", version = "5.3.3" }
mwc_chain = { path = "./chain", version = "5.3.3" }
mwc_core = { path = "./core", version = "5.3.3" }
mwc_keychain = { path = "./keychain", version = "5.3.3" }
mwc_p2p = { path = "./p2p", version = "5.3.3" }
mwc_servers = { path = "./servers", version = "5.3.3" }
mwc_util = { path = "./util", version = "5.3.3" }
mwc_api = { path = "./api", version = "5.3.4" }
mwc_config = { path = "./config", version = "5.3.4" }
mwc_chain = { path = "./chain", version = "5.3.4" }
mwc_core = { path = "./core", version = "5.3.4" }
mwc_keychain = { path = "./keychain", version = "5.3.4" }
mwc_p2p = { path = "./p2p", version = "5.3.4" }
mwc_servers = { path = "./servers", version = "5.3.4" }
mwc_util = { path = "./util", version = "5.3.4" }

[dependencies.cursive]
version = "0.20"
Expand All @@ -51,8 +51,8 @@ features = ["pancurses-backend"]
built = { version = "0.4", features = ["git2"]}

[dev-dependencies]
mwc_chain = { path = "./chain", version = "5.3.3" }
mwc_store = { path = "./store", version = "5.3.3" }
mwc_chain = { path = "./chain", version = "5.3.4" }
mwc_store = { path = "./store", version = "5.3.4" }

[profile.release-with-debug]
inherits = "release"
Expand Down
14 changes: 7 additions & 7 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_api"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "APIs for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -30,12 +30,12 @@ url = "2.1"
bytes = "0.5"
chrono = { version = "0.4.11", features = ["serde"] }

mwc_core = { path = "../core", version = "5.3.3" }
mwc_chain = { path = "../chain", version = "5.3.3" }
mwc_p2p = { path = "../p2p", version = "5.3.3" }
mwc_pool = { path = "../pool", version = "5.3.3" }
mwc_store = { path = "../store", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_chain = { path = "../chain", version = "5.3.4" }
mwc_p2p = { path = "../p2p", version = "5.3.4" }
mwc_pool = { path = "../pool", version = "5.3.4" }
mwc_store = { path = "../store", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

# NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency.
# Android must have v0.20+
Expand Down
10 changes: 5 additions & 5 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_chain"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -23,10 +23,10 @@ chrono = "0.4.11"
lru-cache = "0.1"
lazy_static = "1"

mwc_core = { path = "../core", version = "5.3.3" }
mwc_keychain = { path = "../keychain", version = "5.3.3" }
mwc_store = { path = "../store", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_keychain = { path = "../keychain", version = "5.3.4" }
mwc_store = { path = "../store", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

[dev-dependencies]
env_logger = "0.7"
Expand Down
10 changes: 5 additions & 5 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_config"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Configuration for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -17,10 +17,10 @@ toml = "0.5"
dirs = "2.0"
thiserror = "1"

mwc_core = { path = "../core", version = "5.3.3" }
mwc_servers = { path = "../servers", version = "5.3.3" }
mwc_p2p = { path = "../p2p", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_servers = { path = "../servers", version = "5.3.4" }
mwc_p2p = { path = "../p2p", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

[dev-dependencies]
pretty_assertions = "0.6.1"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_core"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -28,8 +28,8 @@ chrono = { version = "0.4.11", features = ["serde"] }
zeroize = { version = "1.1", features =["zeroize_derive"] }
bytes = "0.5"

keychain = { package = "mwc_keychain", path = "../keychain", version = "5.3.3" }
util = { package = "mwc_util", path = "../util", version = "5.3.3" }
keychain = { package = "mwc_keychain", path = "../keychain", version = "5.3.4" }
util = { package = "mwc_util", path = "../util", version = "5.3.4" }

[dev-dependencies]
serde_json = "1"
4 changes: 2 additions & 2 deletions keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_keychain"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -27,4 +27,4 @@ ripemd160 = "0.9"
sha2 = "0.9"
pbkdf2 = "0.8"

mwc_util = { path = "../util", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.4" }
12 changes: 6 additions & 6 deletions p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_p2p"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -36,10 +36,10 @@ ed25519-dalek = "1"
serde_json = "1"
bytes = "0.5"

mwc_core = { path = "../core", version = "5.3.3" }
mwc_store = { path = "../store", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_chain = { path = "../chain", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_store = { path = "../store", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }
mwc_chain = { path = "../chain", version = "5.3.4" }

[dev-dependencies]
mwc_pool = { path = "../pool", version = "5.3.3" }
mwc_pool = { path = "../pool", version = "5.3.4" }
10 changes: 5 additions & 5 deletions pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_pool"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Chain implementation for mwc, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -19,9 +19,9 @@ lru-cache = "0.1"
log = "0.4"
chrono = "0.4.11"

mwc_core = { path = "../core", version = "5.3.3" }
mwc_keychain = { path = "../keychain", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_keychain = { path = "../keychain", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

[dev-dependencies]
mwc_chain = { path = "../chain", version = "5.3.3" }
mwc_chain = { path = "../chain", version = "5.3.4" }
18 changes: 9 additions & 9 deletions servers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_servers"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -32,14 +32,14 @@ dirs = "1.0.3"
timer = "0.2"
atomic_float = "1.0"

mwc_api = { path = "../api", version = "5.3.3" }
mwc_chain = { path = "../chain", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.3" }
mwc_keychain = { path = "../keychain", version = "5.3.3" }
mwc_p2p = { path = "../p2p", version = "5.3.3" }
mwc_pool = { path = "../pool", version = "5.3.3" }
mwc_store = { path = "../store", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_api = { path = "../api", version = "5.3.4" }
mwc_chain = { path = "../chain", version = "5.3.4" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_keychain = { path = "../keychain", version = "5.3.4" }
mwc_p2p = { path = "../p2p", version = "5.3.4" }
mwc_pool = { path = "../pool", version = "5.3.4" }
mwc_store = { path = "../store", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

# NOTE. We can't have hyper-rustls the same version for Android and non android. because if how rust builds dependency.
# Android must have v0.20+
Expand Down
6 changes: 3 additions & 3 deletions store/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_store"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -21,8 +21,8 @@ serde_derive = "1"
thiserror = "1"
log = "0.4"

mwc_core = { path = "../core", version = "5.3.3" }
mwc_util = { path = "../util", version = "5.3.3" }
mwc_core = { path = "../core", version = "5.3.4" }
mwc_util = { path = "../util", version = "5.3.4" }

[dev-dependencies]
chrono = "0.4.11"
Expand Down
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 = "mwc_util"
version = "5.3.3"
version = "5.3.4"
authors = ["Mwc Developers <info@mwc.mw>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down

0 comments on commit cf1ffa7

Please sign in to comment.