Skip to content

Commit

Permalink
Update version to 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bayk committed Nov 5, 2020
1 parent 2a9da9b commit 8efa606
Show file tree
Hide file tree
Showing 12 changed files with 68 additions and 68 deletions.
22 changes: 11 additions & 11 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 = "grin"
version = "5.0.0"
version = "4.2.0"
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 @@ -32,14 +32,14 @@ term = "0.6"
failure = "0.1"
failure_derive = "0.1"

grin_api = { path = "./api", version = "5.0.0" }
grin_config = { path = "./config", version = "5.0.0" }
grin_chain = { path = "./chain", version = "5.0.0" }
grin_core = { path = "./core", version = "5.0.0" }
grin_keychain = { path = "./keychain", version = "5.0.0" }
grin_p2p = { path = "./p2p", version = "5.0.0" }
grin_servers = { path = "./servers", version = "5.0.0" }
grin_util = { path = "./util", version = "5.0.0" }
grin_api = { path = "./api", version = "4.2.0" }
grin_config = { path = "./config", version = "4.2.0" }
grin_chain = { path = "./chain", version = "4.2.0" }
grin_core = { path = "./core", version = "4.2.0" }
grin_keychain = { path = "./keychain", version = "4.2.0" }
grin_p2p = { path = "./p2p", version = "4.2.0" }
grin_servers = { path = "./servers", version = "4.2.0" }
grin_util = { path = "./util", version = "4.2.0" }

[dependencies.cursive]
version = "0.15"
Expand All @@ -50,5 +50,5 @@ features = ["pancurses-backend"]
built = { version = "0.4", features = ["git2"]}

[dev-dependencies]
grin_chain = { path = "./chain", version = "5.0.0" }
grin_store = { path = "./store", version = "5.0.0" }
grin_chain = { path = "./chain", version = "4.2.0" }
grin_store = { path = "./store", version = "4.2.0" }
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 = "grin_api"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "APIs for grin, 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 @@ rustls = "0.17"
url = "2.1"
bytes = "0.5"

grin_core = { path = "../core", version = "5.0.0" }
grin_chain = { path = "../chain", version = "5.0.0" }
grin_p2p = { path = "../p2p", version = "5.0.0" }
grin_pool = { path = "../pool", version = "5.0.0" }
grin_store = { path = "../store", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_chain = { path = "../chain", version = "4.2.0" }
grin_p2p = { path = "../p2p", version = "4.2.0" }
grin_pool = { path = "../pool", version = "4.2.0" }
grin_store = { path = "../store", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

# 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 = "grin_chain"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -24,10 +24,10 @@ chrono = "0.4.11"
lru-cache = "0.1"
lazy_static = "1"

grin_core = { path = "../core", version = "5.0.0" }
grin_keychain = { path = "../keychain", version = "5.0.0" }
grin_store = { path = "../store", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_keychain = { path = "../keychain", version = "4.2.0" }
grin_store = { path = "../store", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

[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 = "grin_config"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -18,10 +18,10 @@ dirs = "2.0"
failure = "0.1"
failure_derive = "0.1"

grin_core = { path = "../core", version = "5.0.0" }
grin_servers = { path = "../servers", version = "5.0.0" }
grin_p2p = { path = "../p2p", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_servers = { path = "../servers", version = "4.2.0" }
grin_p2p = { path = "../p2p", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

[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 = "grin_core"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, 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 @@ log = "0.4"
chrono = { version = "0.4.11", features = ["serde"] }
zeroize = { version = "1.1", features =["zeroize_derive"] }

keychain = { package = "grin_keychain", path = "../keychain", version = "5.0.0" }
util = { package = "grin_util", path = "../util", version = "5.0.0" }
keychain = { package = "grin_keychain", path = "../keychain", version = "4.2.0" }
util = { package = "grin_util", path = "../util", version = "4.2.0" }

[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 = "grin_keychain"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -28,4 +28,4 @@ ripemd160 = "0.7"
sha2 = "0.7"
pbkdf2 = "0.2"

grin_util = { path = "../util", version = "5.0.0" }
grin_util = { path = "../util", version = "4.2.0" }
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 = "grin_p2p"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -26,10 +26,10 @@ tempfile = "3.1"
log = "0.4"
chrono = { version = "0.4.11", features = ["serde"] }

grin_core = { path = "../core", version = "5.0.0" }
grin_store = { path = "../store", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_chain = { path = "../chain", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_store = { path = "../store", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }
grin_chain = { path = "../chain", version = "4.2.0" }

[dev-dependencies]
grin_pool = { path = "../pool", version = "5.0.0" }
grin_pool = { path = "../pool", version = "4.2.0" }
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 = "grin_pool"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -19,9 +19,9 @@ chrono = "0.4.11"
failure = "0.1"
failure_derive = "0.1"

grin_core = { path = "../core", version = "5.0.0" }
grin_keychain = { path = "../keychain", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_keychain = { path = "../keychain", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

[dev-dependencies]
grin_chain = { path = "../chain", version = "5.0.0" }
grin_chain = { path = "../chain", version = "4.2.0" }
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 = "grin_servers"
version = "5.0.0"
version = "4.2.0"
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 @@ -32,14 +32,14 @@ sysinfo = "0.9"
dirs = "1.0.3"
timer = "0.2"

grin_api = { path = "../api", version = "5.0.0" }
grin_chain = { path = "../chain", version = "5.0.0" }
grin_core = { path = "../core", version = "5.0.0" }
grin_keychain = { path = "../keychain", version = "5.0.0" }
grin_p2p = { path = "../p2p", version = "5.0.0" }
grin_pool = { path = "../pool", version = "5.0.0" }
grin_store = { path = "../store", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_api = { path = "../api", version = "4.2.0" }
grin_chain = { path = "../chain", version = "4.2.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_keychain = { path = "../keychain", version = "4.2.0" }
grin_p2p = { path = "../p2p", version = "4.2.0" }
grin_pool = { path = "../pool", version = "4.2.0" }
grin_store = { path = "../store", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

# 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 = "grin_store"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -22,8 +22,8 @@ serde = "1"
serde_derive = "1"
log = "0.4"

grin_core = { path = "../core", version = "5.0.0" }
grin_util = { path = "../util", version = "5.0.0" }
grin_core = { path = "../core", version = "4.2.0" }
grin_util = { path = "../util", version = "4.2.0" }

[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 = "grin_util"
version = "5.0.0"
version = "4.2.0"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down

0 comments on commit 8efa606

Please sign in to comment.