Skip to content

Commit 18391e9

Browse files
committed
bump version
1 parent 0c750d9 commit 18391e9

File tree

14 files changed

+184
-134
lines changed

14 files changed

+184
-134
lines changed

Cargo.lock

+112-66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -34,14 +34,14 @@ linefeed = "0.5"
3434
failure = "0.1"
3535
failure_derive = "0.1"
3636

37-
grin_api = { path = "./api", version = "2.1.0" }
38-
grin_config = { path = "./config", version = "2.1.0" }
39-
grin_core = { path = "./core", version = "2.1.0" }
40-
grin_keychain = { path = "./keychain", version = "2.1.0" }
41-
grin_p2p = { path = "./p2p", version = "2.1.0" }
42-
grin_servers = { path = "./servers", version = "2.1.0" }
43-
grin_util = { path = "./util", version = "2.1.0" }
44-
grin_wallet = { path = "./wallet", version = "2.1.0" }
37+
grin_api = { path = "./api", version = "2.1.1" }
38+
grin_config = { path = "./config", version = "2.1.1" }
39+
grin_core = { path = "./core", version = "2.1.1" }
40+
grin_keychain = { path = "./keychain", version = "2.1.1" }
41+
grin_p2p = { path = "./p2p", version = "2.1.1" }
42+
grin_servers = { path = "./servers", version = "2.1.1" }
43+
grin_util = { path = "./util", version = "2.1.1" }
44+
grin_wallet = { path = "./wallet", version = "2.1.1" }
4545

4646
[target.'cfg(windows)'.dependencies]
4747
cursive = { version = "0.10.0", default-features = false, features = ["pancurses-backend"] }
@@ -58,5 +58,5 @@ flate2 = "1.0"
5858
tar = "0.4"
5959

6060
[dev-dependencies]
61-
grin_chain = { path = "./chain", version = "2.1.0" }
62-
grin_store = { path = "./store", version = "2.1.0" }
61+
grin_chain = { path = "./chain", version = "2.1.1" }
62+
grin_store = { path = "./store", version = "2.1.1" }

api/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_api"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -30,9 +30,9 @@ futures = "0.1.21"
3030
rustls = "0.13"
3131
url = "1.7.0"
3232

33-
grin_core = { path = "../core", version = "2.1.0" }
34-
grin_chain = { path = "../chain", version = "2.1.0" }
35-
grin_p2p = { path = "../p2p", version = "2.1.0" }
36-
grin_pool = { path = "../pool", version = "2.1.0" }
37-
grin_store = { path = "../store", version = "2.1.0" }
38-
grin_util = { path = "../util", version = "2.1.0" }
33+
grin_core = { path = "../core", version = "2.1.1" }
34+
grin_chain = { path = "../chain", version = "2.1.1" }
35+
grin_p2p = { path = "../p2p", version = "2.1.1" }
36+
grin_pool = { path = "../pool", version = "2.1.1" }
37+
grin_store = { path = "../store", version = "2.1.1" }
38+
grin_util = { path = "../util", version = "2.1.1" }

chain/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_chain"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -24,10 +24,10 @@ lru-cache = "0.1"
2424
lazy_static = "1"
2525
regex = "1"
2626

27-
grin_core = { path = "../core", version = "2.1.0" }
28-
grin_keychain = { path = "../keychain", version = "2.1.0" }
29-
grin_store = { path = "../store", version = "2.1.0" }
30-
grin_util = { path = "../util", version = "2.1.0" }
27+
grin_core = { path = "../core", version = "2.1.1" }
28+
grin_keychain = { path = "../keychain", version = "2.1.1" }
29+
grin_store = { path = "../store", version = "2.1.1" }
30+
grin_util = { path = "../util", version = "2.1.1" }
3131

3232
[dev-dependencies]
3333
env_logger = "0.5"

config/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_config"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -16,11 +16,11 @@ serde_derive = "1"
1616
toml = "0.4"
1717
dirs = "1.0.3"
1818

19-
grin_core = { path = "../core", version = "2.1.0" }
20-
grin_servers = { path = "../servers", version = "2.1.0" }
21-
grin_p2p = { path = "../p2p", version = "2.1.0" }
22-
grin_util = { path = "../util", version = "2.1.0" }
23-
grin_wallet = { path = "../wallet", version = "2.1.0" }
19+
grin_core = { path = "../core", version = "2.1.1" }
20+
grin_servers = { path = "../servers", version = "2.1.1" }
21+
grin_p2p = { path = "../p2p", version = "2.1.1" }
22+
grin_util = { path = "../util", version = "2.1.1" }
23+
grin_wallet = { path = "../wallet", version = "2.1.1" }
2424

2525
[dev-dependencies]
2626
pretty_assertions = "0.5.1"

core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_core"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -28,8 +28,8 @@ uuid = { version = "0.6", features = ["serde", "v4"] }
2828
log = "0.4"
2929
chrono = "0.4.4"
3030

31-
grin_keychain = { path = "../keychain", version = "2.1.0" }
32-
grin_util = { path = "../util", version = "2.1.0" }
31+
grin_keychain = { path = "../keychain", version = "2.1.1" }
32+
grin_util = { path = "../util", version = "2.1.1" }
3333

3434
[dev-dependencies]
3535
serde_json = "1"

keychain/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_keychain"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -27,4 +27,4 @@ sha2 = "0.7"
2727
pbkdf2 = "0.2"
2828

2929

30-
grin_util = { path = "../util", version = "2.1.0" }
30+
grin_util = { path = "../util", version = "2.1.1" }

p2p/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_p2p"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -22,9 +22,9 @@ serde_derive = "1"
2222
log = "0.4"
2323
chrono = { version = "0.4.4", features = ["serde"] }
2424

25-
grin_core = { path = "../core", version = "2.1.0" }
26-
grin_store = { path = "../store", version = "2.1.0" }
27-
grin_util = { path = "../util", version = "2.1.0" }
25+
grin_core = { path = "../core", version = "2.1.1" }
26+
grin_store = { path = "../store", version = "2.1.1" }
27+
grin_util = { path = "../util", version = "2.1.1" }
2828

2929
[dev-dependencies]
30-
grin_pool = { path = "../pool", version = "2.1.0" }
30+
grin_pool = { path = "../pool", version = "2.1.1" }

pool/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_pool"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -19,10 +19,10 @@ chrono = "0.4.4"
1919
failure = "0.1"
2020
failure_derive = "0.1"
2121

22-
grin_core = { path = "../core", version = "2.1.0" }
23-
grin_keychain = { path = "../keychain", version = "2.1.0" }
24-
grin_store = { path = "../store", version = "2.1.0" }
25-
grin_util = { path = "../util", version = "2.1.0" }
22+
grin_core = { path = "../core", version = "2.1.1" }
23+
grin_keychain = { path = "../keychain", version = "2.1.1" }
24+
grin_store = { path = "../store", version = "2.1.1" }
25+
grin_util = { path = "../util", version = "2.1.1" }
2626

2727
[dev-dependencies]
28-
grin_chain = { path = "../chain", version = "2.1.0" }
28+
grin_chain = { path = "../chain", version = "2.1.1" }

servers/Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_servers"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -26,15 +26,15 @@ chrono = "0.4.4"
2626
bufstream = "~0.1"
2727
jsonrpc-core = "~8.0"
2828

29-
grin_api = { path = "../api", version = "2.1.0" }
30-
grin_chain = { path = "../chain", version = "2.1.0" }
31-
grin_core = { path = "../core", version = "2.1.0" }
32-
grin_keychain = { path = "../keychain", version = "2.1.0" }
33-
grin_p2p = { path = "../p2p", version = "2.1.0" }
34-
grin_pool = { path = "../pool", version = "2.1.0" }
35-
grin_store = { path = "../store", version = "2.1.0" }
36-
grin_util = { path = "../util", version = "2.1.0" }
37-
grin_wallet = { path = "../wallet", version = "2.1.0" }
29+
grin_api = { path = "../api", version = "2.1.1" }
30+
grin_chain = { path = "../chain", version = "2.1.1" }
31+
grin_core = { path = "../core", version = "2.1.1" }
32+
grin_keychain = { path = "../keychain", version = "2.1.1" }
33+
grin_p2p = { path = "../p2p", version = "2.1.1" }
34+
grin_pool = { path = "../pool", version = "2.1.1" }
35+
grin_store = { path = "../store", version = "2.1.1" }
36+
grin_util = { path = "../util", version = "2.1.1" }
37+
grin_wallet = { path = "../wallet", version = "2.1.1" }
3838

3939
[dev-dependencies]
4040
blake2-rfc = "0.2"

store/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_store"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -22,8 +22,8 @@ serde = "1"
2222
serde_derive = "1"
2323
log = "0.4"
2424

25-
grin_core = { path = "../core", version = "2.1.0" }
26-
grin_util = { path = "../util", version = "2.1.0" }
25+
grin_core = { path = "../core", version = "2.1.1" }
26+
grin_util = { path = "../util", version = "2.1.1" }
2727

2828
[dev-dependencies]
2929
chrono = "0.4.4"

util/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_util"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"

wallet/Cargo.toml

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -12,6 +12,7 @@ edition = "2018"
1212
[dependencies]
1313
blake2-rfc = "0.2"
1414
byteorder = "1"
15+
colored = "1.6"
1516
failure = "0.1"
1617
failure_derive = "0.1"
1718
futures = "0.1"
@@ -31,12 +32,12 @@ uuid = { version = "0.6", features = ["serde", "v4"] }
3132
url = "1.7.0"
3233
chrono = { version = "0.4.4", features = ["serde"] }
3334

34-
grin_api = { path = "../api", version = "2.1.0" }
35-
grin_core = { path = "../core", version = "2.1.0" }
36-
grin_keychain = { path = "../keychain", version = "2.1.0" }
37-
grin_store = { path = "../store", version = "2.1.0" }
38-
grin_util = { path = "../util", version = "2.1.0" }
39-
grin_chain = { path = "../chain", version = "2.1.0" }
35+
grin_api = { path = "../api", version = "2.1.1" }
36+
grin_core = { path = "../core", version = "2.1.1" }
37+
grin_keychain = { path = "../keychain", version = "2.1.1" }
38+
grin_store = { path = "../store", version = "2.1.1" }
39+
grin_util = { path = "../util", version = "2.1.1" }
40+
grin_chain = { path = "../chain", version = "2.1.1" }
4041

4142
[dev-dependencies]
42-
grin_store = { path = "../store", version = "2.1.0" }
43+
grin_store = { path = "../store", version = "2.1.1" }

wallet/src/types.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
extern crate colored;
16+
1517
use std::fs::{self, File};
1618
use std::io;
1719
use std::io::{Read, Write};
1820
use std::path::Path;
1921
use std::path::MAIN_SEPARATOR;
22+
use colored::*;
2023

2124
use crate::blake2;
2225
use rand::{thread_rng, Rng};
@@ -233,9 +236,9 @@ impl WalletSeed {
233236
println!();
234237
println!("Please back-up these words in a non-digital format.");
235238

236-
println!("{}", "Press ENTER when you have done so");
237239

238240
if wait_for_user {
241+
println!("{}", "Press ENTER when you have done so".bright_green().bold());
239242
let mut line = String::new();
240243
io::stdout().flush().unwrap();
241244
io::stdin().read_line(&mut line).unwrap();

0 commit comments

Comments
 (0)