Skip to content

Commit 12a25f8

Browse files
Yeastplumequentinlesceller
andauthored
Update versioning to 5.2.0-beta.1 against grin 5.2.0-beta.3 (#691)
* update versioning to 5.2.0-beta.1 against grin 5.2.0-beta.3 * tweak for CI trigger --------- Co-authored-by: Quentin Le Sceller <q.lesceller@gmail.com>
1 parent dac31b3 commit 12a25f8

8 files changed

Lines changed: 102 additions & 102 deletions

File tree

Cargo.lock

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

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"
3-
version = "5.2.0-alpha.1"
3+
version = "5.2.0-beta.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"
@@ -30,12 +30,12 @@ semver = "0.10"
3030
rustyline = "6"
3131
lazy_static = "1"
3232

33-
grin_wallet_api = { path = "./api", version = "5.2.0-alpha.1" }
34-
grin_wallet_impls = { path = "./impls", version = "5.2.0-alpha.1" }
35-
grin_wallet_libwallet = { path = "./libwallet", version = "5.2.0-alpha.1" }
36-
grin_wallet_controller = { path = "./controller", version = "5.2.0-alpha.1" }
37-
grin_wallet_config = { path = "./config", version = "5.2.0-alpha.1" }
38-
grin_wallet_util = { path = "./util", version = "5.2.0-alpha.1" }
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" }
3939

4040

4141
##### Grin Imports
@@ -48,24 +48,24 @@ grin_wallet_util = { path = "./util", version = "5.2.0-alpha.1" }
4848

4949
# For beta release
5050

51-
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2"}
52-
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
53-
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
54-
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
51+
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
52+
grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
53+
grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
54+
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"}
6464
# grin_keychain = { path = "../grin/keychain"}
6565
# grin_util = { path = "../grin/util"}
6666
# grin_api = { path = "../grin/api"}
6767

68-
#####
68+
######
6969

7070
[build-dependencies]
7171
built = { version = "0.4", features = ["git2"]}

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-alpha.1"
3+
version = "5.2.0-beta.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Grin Wallet API"
66
license = "Apache-2.0"
@@ -22,10 +22,10 @@ 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-alpha.1" }
26-
grin_wallet_config = { path = "../config", version = "5.2.0-alpha.1" }
27-
grin_wallet_impls = { path = "../impls", version = "5.2.0-alpha.1" }
28-
grin_wallet_util = { path = "../util", version = "5.2.0-alpha.1" }
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" }
2929

3030
##### Grin Imports
3131

@@ -36,14 +36,14 @@ grin_wallet_util = { path = "../util", version = "5.2.0-alpha.1" }
3636

3737
# For beta release
3838

39-
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2"}
40-
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
41-
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
39+
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
40+
grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
41+
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-alpha.1"
3+
version = "5.2.0-beta.1"
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,7 +16,7 @@ serde_derive = "1"
1616
toml = "0.5"
1717
dirs = "2.0"
1818

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

2121
##### Grin Imports
2222

@@ -26,12 +26,12 @@ grin_wallet_util = { path = "../util", version = "5.2.0-alpha.1" }
2626

2727
# For beta release
2828

29-
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2"}
30-
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
29+
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
30+
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-alpha.1"
3+
version = "5.2.0-beta.1"
44
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
55
description = "Controllers for grin wallet instantiation"
66
license = "Apache-2.0"
@@ -30,11 +30,11 @@ lazy_static = "1"
3030
thiserror = "1"
3131
qr_code = "1.1.0"
3232

33-
grin_wallet_util = { path = "../util", version = "5.2.0-alpha.1" }
34-
grin_wallet_api = { path = "../api", version = "5.2.0-alpha.1" }
35-
grin_wallet_impls = { path = "../impls", version = "5.2.0-alpha.1" }
36-
grin_wallet_libwallet = { path = "../libwallet", version = "5.2.0-alpha.1" }
37-
grin_wallet_config = { path = "../config", version = "5.2.0-alpha.1" }
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" }
3838

3939
##### Grin Imports
4040

@@ -46,16 +46,16 @@ grin_wallet_config = { path = "../config", version = "5.2.0-alpha.1" }
4646

4747
# For beta release
4848

49-
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2"}
50-
# grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
51-
# grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
52-
# grin_api = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
49+
grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"}
50+
grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
51+
grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" }
52+
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"}
@@ -76,10 +76,10 @@ remove_dir_all = "0.7"
7676

7777
# For beta release
7878

79-
# grin_chain = { git = "https://github.com/mimblewimble/grin", tag = "v5.0.0-beta.2" }
79+
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"}

0 commit comments

Comments
 (0)