Skip to content

Commit 7741812

Browse files
author
Yeastplume
authored
Update versioning, dependencies for 5.3.0 release (#708)
1 parent 297c828 commit 7741812

File tree

8 files changed

+365
-353
lines changed

8 files changed

+365
-353
lines changed

Cargo.lock

Lines changed: 287 additions & 276 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.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"
@@ -30,21 +30,21 @@ semver = "0.10"
3030
rustyline = "6"
3131
lazy_static = "1"
3232

33-
grin_wallet_api = { path = "./api", version = "5.2.0-beta.1" }
34-
grin_wallet_impls = { path = "./impls", version = "5.2.0-beta.1" }
35-
grin_wallet_libwallet = { path = "./libwallet", version = "5.2.0-beta.1" }
36-
grin_wallet_controller = { path = "./controller", version = "5.2.0-beta.1" }
37-
grin_wallet_config = { path = "./config", version = "5.2.0-beta.1" }
38-
grin_wallet_util = { path = "./util", version = "5.2.0-beta.1" }
33+
grin_wallet_api = { path = "./api", version = "5.3.0" }
34+
grin_wallet_impls = { path = "./impls", version = "5.3.0" }
35+
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.0" }
36+
grin_wallet_controller = { path = "./controller", version = "5.3.0" }
37+
grin_wallet_config = { path = "./config", version = "5.3.0" }
38+
grin_wallet_util = { path = "./util", version = "5.3.0" }
3939

4040

4141
##### Grin Imports
4242

4343
# For Release
44-
#grin_core = "4.0.0"
45-
#grin_keychain = "4.0.0"
46-
#grin_util = "4.0.0"
47-
#grin_api = "4.0.0"
44+
grin_core = "5.3.0"
45+
grin_keychain = "5.3.0"
46+
grin_util = "5.3.0"
47+
grin_api = "5.3.0"
4848

4949
# For beta release
5050

@@ -54,10 +54,10 @@ grin_wallet_util = { path = "./util", version = "5.2.0-beta.1" }
5454
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
5555

5656
# For bleeding edge
57-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58-
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
59-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
60-
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
57+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58+
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
59+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
60+
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
6161

6262
# For local testing
6363
# grin_core = { path = "../grin/core"}

api/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_api"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.0"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Grin Wallet API"
66
license = "Apache-2.0"
@@ -22,17 +22,17 @@ ring = "0.16"
2222
base64 = "0.12"
2323
ed25519-dalek = "1.0.0-pre.4"
2424

25-
grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-beta.1" }
26-
grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
27-
grin_wallet_impls = { path = "../impls", version = "5.2.0-beta.1" }
28-
grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
25+
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.0" }
26+
grin_wallet_config = { path = "../config", version = "5.3.0" }
27+
grin_wallet_impls = { path = "../impls", version = "5.3.0" }
28+
grin_wallet_util = { path = "../util", version = "5.3.0" }
2929

3030
##### Grin Imports
3131

3232
# For Release
33-
#grin_core = "4.0.0"
34-
#grin_keychain = "4.0.0"
35-
#grin_util = "4.0.0"
33+
grin_core = "5.3.0"
34+
grin_keychain = "5.3.0"
35+
grin_util = "5.3.0"
3636

3737
# For beta release
3838

@@ -41,9 +41,9 @@ grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
4141
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
4242

4343
# For bleeding edge
44-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
45-
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
46-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
44+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
45+
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
46+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
4747

4848
# For local testing
4949
# grin_core = { path = "../../grin/core"}

config/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_config"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.0"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -16,22 +16,22 @@ serde_derive = "1"
1616
toml = "0.5"
1717
dirs = "2.0"
1818

19-
grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
19+
grin_wallet_util = { path = "../util", version = "5.3.0" }
2020

2121
##### Grin Imports
2222

2323
# For Release
24-
#grin_core = "4.0.0"
25-
#grin_util = "4.0.0"
24+
grin_core = "5.3.0"
25+
grin_util = "5.3.0"
2626

2727
# For beta release
2828

2929
#grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
3030
#grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
3131

3232
# For bleeding edge
33-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
34-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
33+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
34+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
3535

3636
# For local testing
3737
# grin_core = { path = "../../grin/core"}

controller/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_controller"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.0"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Controllers for grin wallet instantiation"
66
license = "Apache-2.0"
@@ -30,19 +30,19 @@ lazy_static = "1"
3030
thiserror = "1"
3131
qr_code = "1.1.0"
3232

33-
grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
34-
grin_wallet_api = { path = "../api", version = "5.2.0-beta.1" }
35-
grin_wallet_impls = { path = "../impls", version = "5.2.0-beta.1" }
36-
grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-beta.1" }
37-
grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
33+
grin_wallet_util = { path = "../util", version = "5.3.0" }
34+
grin_wallet_api = { path = "../api", version = "5.3.0" }
35+
grin_wallet_impls = { path = "../impls", version = "5.3.0" }
36+
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.0" }
37+
grin_wallet_config = { path = "../config", version = "5.3.0" }
3838

3939
##### Grin Imports
4040

4141
# For Release
42-
#grin_core = "4.0.0"
43-
#grin_keychain = "4.0.0"
44-
#grin_util = "4.0.0"
45-
#grin_api = "4.0.0"
42+
grin_core = "5.3.0"
43+
grin_keychain = "5.3.0"
44+
grin_util = "5.3.0"
45+
grin_api = "5.3.0"
4646

4747
# For beta release
4848

@@ -52,10 +52,10 @@ grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
5252
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
5353

5454
# For bleeding edge
55-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
56-
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
57-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58-
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
55+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
56+
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
57+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58+
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
5959

6060
# For local testing
6161
# grin_core = { path = "../../grin/core"}
@@ -72,14 +72,14 @@ remove_dir_all = "0.7"
7272
##### Grin Imports
7373

7474
# For Release
75-
# grin_chain = "4.0.0"
75+
grin_chain = "5.3.0"
7676

7777
# For beta release
7878

7979
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
8080

8181
# For bleeding edge
82-
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
82+
# grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
8383

8484
# For local testing
8585
# grin_chain = { path = "../../grin/chain"}

impls/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_impls"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.0"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Concrete types derived from libwallet traits"
66
license = "Apache-2.0"
@@ -36,19 +36,19 @@ sysinfo = "0.29"
3636
base64 = "0.12.0"
3737
url = "2.1"
3838

39-
grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
40-
grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
41-
grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-beta.1" }
39+
grin_wallet_util = { path = "../util", version = "5.3.0" }
40+
grin_wallet_config = { path = "../config", version = "5.3.0" }
41+
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.0" }
4242

4343
##### Grin Imports
4444

4545
# For Release
46-
#grin_core = "4.0.0"
47-
#grin_keychain = "4.0.0"
48-
#grin_chain = "4.0.0"
49-
#grin_util = "4.0.0"
50-
#grin_api = "4.0.0"
51-
#grin_store = "4.0.0"
46+
grin_core = "5.3.0"
47+
grin_keychain = "5.3.0"
48+
grin_chain = "5.3.0"
49+
grin_util = "5.3.0"
50+
grin_api = "5.3.0"
51+
grin_store = "5.3.0"
5252

5353
# For beta release
5454

@@ -60,12 +60,12 @@ grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-beta.1" }
6060
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
6161

6262
# For bleeding edge
63-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
64-
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
65-
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
66-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
67-
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
68-
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
63+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
64+
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
65+
# grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
66+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
67+
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" }
68+
# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
6969

7070
# For local testing
7171
# grin_core = { path = "../../grin/core"}

libwallet/Cargo.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_libwallet"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.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"
@@ -36,15 +36,16 @@ bech32 = "0.7"
3636
byteorder = "1.3"
3737
num-bigint = "0.2"
3838

39-
grin_wallet_util = { path = "../util", version = "5.2.0-beta.1" }
40-
grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
39+
grin_wallet_util = { path = "../util", version = "5.3.0" }
40+
grin_wallet_config = { path = "../config", version = "5.3.0" }
4141

4242
##### Grin Imports
4343

4444
# For Release
45-
#grin_core = "4.0.0"
46-
#grin_keychain = "4.0.0"
47-
#grin_util = "4.0.0"
45+
grin_core = "5.3.0"
46+
grin_keychain = "5.3.0"
47+
grin_util = "5.3.0"
48+
grin_store = "5.3.0"
4849

4950
# For beta release
5051

@@ -54,10 +55,10 @@ grin_wallet_config = { path = "../config", version = "5.2.0-beta.1" }
5455
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
5556

5657
# For bleeding edge
57-
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58-
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
59-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
60-
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
58+
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" }
59+
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" }
60+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
61+
# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" }
6162

6263
# For local testing
6364
# grin_core = { path = "../../grin/core"}

util/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_wallet_util"
3-
version = "5.2.0-beta.1"
3+
version = "5.3.0"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Util, for generic utilities and to re-export grin crates"
66
license = "Apache-2.0"
@@ -21,14 +21,14 @@ thiserror = "1"
2121
##### Grin Imports
2222

2323
# For Release
24-
#grin_util = "4.0.0"
24+
grin_util = "5.3.0"
2525

2626
# For beta release
2727

2828
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
2929

3030
# For bleeding edge
31-
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
31+
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" }
3232

3333
# For local testing
3434

0 commit comments

Comments
 (0)