Skip to content

Commit 163ca39

Browse files
authored
Update versioning for 5.3.0, update grin_secp256k1zkp dependency (mimblewimble#3786)
1 parent 43b43d9 commit 163ca39

File tree

12 files changed

+71
-78
lines changed

12 files changed

+71
-78
lines changed

Cargo.lock

+13-20
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 = "5.3.0-alpha.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"
@@ -32,14 +32,14 @@ serde_json = "1"
3232
log = "0.4"
3333
term = "0.6"
3434

35-
grin_api = { path = "./api", version = "5.3.0-alpha.1" }
36-
grin_config = { path = "./config", version = "5.3.0-alpha.1" }
37-
grin_chain = { path = "./chain", version = "5.3.0-alpha.1" }
38-
grin_core = { path = "./core", version = "5.3.0-alpha.1" }
39-
grin_keychain = { path = "./keychain", version = "5.3.0-alpha.1" }
40-
grin_p2p = { path = "./p2p", version = "5.3.0-alpha.1" }
41-
grin_servers = { path = "./servers", version = "5.3.0-alpha.1" }
42-
grin_util = { path = "./util", version = "5.3.0-alpha.1" }
35+
grin_api = { path = "./api", version = "5.3.0" }
36+
grin_config = { path = "./config", version = "5.3.0" }
37+
grin_chain = { path = "./chain", version = "5.3.0" }
38+
grin_core = { path = "./core", version = "5.3.0" }
39+
grin_keychain = { path = "./keychain", version = "5.3.0" }
40+
grin_p2p = { path = "./p2p", version = "5.3.0" }
41+
grin_servers = { path = "./servers", version = "5.3.0" }
42+
grin_util = { path = "./util", version = "5.3.0" }
4343

4444
[dependencies.cursive]
4545
version = "0.20"
@@ -50,5 +50,5 @@ features = ["pancurses-backend"]
5050
built = { version = "0.4", features = ["git2"]}
5151

5252
[dev-dependencies]
53-
grin_chain = { path = "./chain", version = "5.3.0-alpha.1" }
54-
grin_store = { path = "./store", version = "5.3.0-alpha.1" }
53+
grin_chain = { path = "./chain", version = "5.3.0" }
54+
grin_store = { path = "./store", version = "5.3.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 = "5.3.0-alpha.1"
3+
version = "5.3.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 @@ rustls = "0.17"
3030
url = "2.1"
3131
bytes = "0.5"
3232

33-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
34-
grin_chain = { path = "../chain", version = "5.3.0-alpha.1" }
35-
grin_p2p = { path = "../p2p", version = "5.3.0-alpha.1" }
36-
grin_pool = { path = "../pool", version = "5.3.0-alpha.1" }
37-
grin_store = { path = "../store", version = "5.3.0-alpha.1" }
38-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
33+
grin_core = { path = "../core", version = "5.3.0" }
34+
grin_chain = { path = "../chain", version = "5.3.0" }
35+
grin_p2p = { path = "../p2p", version = "5.3.0" }
36+
grin_pool = { path = "../pool", version = "5.3.0" }
37+
grin_store = { path = "../store", version = "5.3.0" }
38+
grin_util = { path = "../util", version = "5.3.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 = "5.3.0-alpha.1"
3+
version = "5.3.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"
@@ -23,10 +23,10 @@ chrono = "0.4.11"
2323
lru-cache = "0.1"
2424
lazy_static = "1"
2525

26-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
27-
grin_keychain = { path = "../keychain", version = "5.3.0-alpha.1" }
28-
grin_store = { path = "../store", version = "5.3.0-alpha.1" }
29-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
26+
grin_core = { path = "../core", version = "5.3.0" }
27+
grin_keychain = { path = "../keychain", version = "5.3.0" }
28+
grin_store = { path = "../store", version = "5.3.0" }
29+
grin_util = { path = "../util", version = "5.3.0" }
3030

3131
[dev-dependencies]
3232
env_logger = "0.7"

config/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_config"
3-
version = "5.3.0-alpha.1"
3+
version = "5.3.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,10 +16,10 @@ serde_derive = "1"
1616
toml = "0.5"
1717
dirs = "2.0"
1818

19-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
20-
grin_servers = { path = "../servers", version = "5.3.0-alpha.1" }
21-
grin_p2p = { path = "../p2p", version = "5.3.0-alpha.1" }
22-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
19+
grin_core = { path = "../core", version = "5.3.0" }
20+
grin_servers = { path = "../servers", version = "5.3.0" }
21+
grin_p2p = { path = "../p2p", version = "5.3.0" }
22+
grin_util = { path = "../util", version = "5.3.0" }
2323

2424
[dev-dependencies]
2525
pretty_assertions = "0.6.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 = "5.3.0-alpha.1"
3+
version = "5.3.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"
@@ -28,8 +28,8 @@ chrono = { version = "0.4.11", features = ["serde"] }
2828
zeroize = { version = "1.1", features =["zeroize_derive"] }
2929
bytes = "0.5"
3030

31-
keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.0-alpha.1" }
32-
util = { package = "grin_util", path = "../util", version = "5.3.0-alpha.1" }
31+
keychain = { package = "grin_keychain", path = "../keychain", version = "5.3.0" }
32+
util = { package = "grin_util", path = "../util", version = "5.3.0" }
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 = "5.3.0-alpha.1"
3+
version = "5.3.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"
@@ -26,4 +26,4 @@ ripemd160 = "0.9"
2626
sha2 = "0.9"
2727
pbkdf2 = "0.8"
2828

29-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
29+
grin_util = { path = "../util", version = "5.3.0" }

p2p/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_p2p"
3-
version = "5.3.0-alpha.1"
3+
version = "5.3.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"
@@ -22,10 +22,10 @@ log = "0.4"
2222
chrono = { version = "0.4.11", features = ["serde"] }
2323
bytes = "0.5"
2424

25-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
26-
grin_store = { path = "../store", version = "5.3.0-alpha.1" }
27-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
28-
grin_chain = { path = "../chain", version = "5.3.0-alpha.1" }
25+
grin_core = { path = "../core", version = "5.3.0" }
26+
grin_store = { path = "../store", version = "5.3.0" }
27+
grin_util = { path = "../util", version = "5.3.0" }
28+
grin_chain = { path = "../chain", version = "5.3.0" }
2929

3030
[dev-dependencies]
31-
grin_pool = { path = "../pool", version = "5.3.0-alpha.1" }
31+
grin_pool = { path = "../pool", version = "5.3.0" }

pool/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_pool"
3-
version = "5.3.0-alpha.1"
3+
version = "5.3.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"
@@ -18,9 +18,9 @@ thiserror = "1"
1818
log = "0.4"
1919
chrono = "0.4.11"
2020

21-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
22-
grin_keychain = { path = "../keychain", version = "5.3.0-alpha.1" }
23-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
21+
grin_core = { path = "../core", version = "5.3.0" }
22+
grin_keychain = { path = "../keychain", version = "5.3.0" }
23+
grin_util = { path = "../util", version = "5.3.0" }
2424

2525
[dev-dependencies]
26-
grin_chain = { path = "../chain", version = "5.3.0-alpha.1" }
26+
grin_chain = { path = "../chain", version = "5.3.0" }

servers/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_servers"
3-
version = "5.3.0-alpha.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"
@@ -26,11 +26,11 @@ tokio = {version = "0.2", features = ["full"] }
2626
tokio-util = { version = "0.2", features = ["codec"] }
2727
walkdir = "2.3.1"
2828

29-
grin_api = { path = "../api", version = "5.3.0-alpha.1" }
30-
grin_chain = { path = "../chain", version = "5.3.0-alpha.1" }
31-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
32-
grin_keychain = { path = "../keychain", version = "5.3.0-alpha.1" }
33-
grin_p2p = { path = "../p2p", version = "5.3.0-alpha.1" }
34-
grin_pool = { path = "../pool", version = "5.3.0-alpha.1" }
35-
grin_store = { path = "../store", version = "5.3.0-alpha.1" }
36-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
29+
grin_api = { path = "../api", version = "5.3.0" }
30+
grin_chain = { path = "../chain", version = "5.3.0" }
31+
grin_core = { path = "../core", version = "5.3.0" }
32+
grin_keychain = { path = "../keychain", version = "5.3.0" }
33+
grin_p2p = { path = "../p2p", version = "5.3.0" }
34+
grin_pool = { path = "../pool", version = "5.3.0" }
35+
grin_store = { path = "../store", version = "5.3.0" }
36+
grin_util = { path = "../util", version = "5.3.0" }

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 = "5.3.0-alpha.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"
@@ -21,8 +21,8 @@ serde_derive = "1"
2121
thiserror = "1"
2222
log = "0.4"
2323

24-
grin_core = { path = "../core", version = "5.3.0-alpha.1" }
25-
grin_util = { path = "../util", version = "5.3.0-alpha.1" }
24+
grin_core = { path = "../core", version = "5.3.0" }
25+
grin_util = { path = "../util", version = "5.3.0" }
2626

2727
[dev-dependencies]
2828
chrono = "0.4.11"

util/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grin_util"
3-
version = "5.3.0-alpha.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"
@@ -28,5 +28,5 @@ zeroize = { version = "1.1", features =["zeroize_derive"] }
2828
#git = "https://github.com/mimblewimble/rust-secp256k1-zkp"
2929
#tag = "grin_integration_29"
3030
#path = "../../rust-secp256k1-zkp"
31-
version = "0.7.12"
31+
version = "0.7.13"
3232
features = ["bullet-proof-sizing"]

0 commit comments

Comments
 (0)