Skip to content

Commit 248aa39

Browse files
committed
bump version
1 parent 5c05fb3 commit 248aa39

File tree

13 files changed

+133
-133
lines changed

13 files changed

+133
-133
lines changed

Cargo.lock

+66-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.0.2"
3+
version = "2.1.0"
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.0.2" }
38-
grin_config = { path = "./config", version = "2.0.2" }
39-
grin_core = { path = "./core", version = "2.0.2" }
40-
grin_keychain = { path = "./keychain", version = "2.0.2" }
41-
grin_p2p = { path = "./p2p", version = "2.0.2" }
42-
grin_servers = { path = "./servers", version = "2.0.2" }
43-
grin_util = { path = "./util", version = "2.0.2" }
44-
grin_wallet = { path = "./wallet", version = "2.0.2" }
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" }
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.0.2" }
62-
grin_store = { path = "./store", version = "2.0.2" }
61+
grin_chain = { path = "./chain", version = "2.1.0" }
62+
grin_store = { path = "./store", version = "2.1.0" }

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.0.2"
3+
version = "2.1.0"
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.0.2" }
34-
grin_chain = { path = "../chain", version = "2.0.2" }
35-
grin_p2p = { path = "../p2p", version = "2.0.2" }
36-
grin_pool = { path = "../pool", version = "2.0.2" }
37-
grin_store = { path = "../store", version = "2.0.2" }
38-
grin_util = { path = "../util", version = "2.0.2" }
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" }

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.0.2"
3+
version = "2.1.0"
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.0.2" }
28-
grin_keychain = { path = "../keychain", version = "2.0.2" }
29-
grin_store = { path = "../store", version = "2.0.2" }
30-
grin_util = { path = "../util", version = "2.0.2" }
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" }
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.0.2"
3+
version = "2.1.0"
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.0.2" }
20-
grin_servers = { path = "../servers", version = "2.0.2" }
21-
grin_p2p = { path = "../p2p", version = "2.0.2" }
22-
grin_util = { path = "../util", version = "2.0.2" }
23-
grin_wallet = { path = "../wallet", version = "2.0.2" }
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" }
2424

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

0 commit comments

Comments
 (0)