Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit 2d97ed8

Browse files
author
gringott
committed
Bump the version number to 0.0.3
1 parent 701ca23 commit 2d97ed8

File tree

13 files changed

+116
-116
lines changed

13 files changed

+116
-116
lines changed

Cargo.lock

+57-57
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 = "gotts"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@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 @@ term = "0.5"
3232
failure = "0.1"
3333
failure_derive = "0.1"
3434

35-
gotts_api = { path = "./api", version = "0.0.2" }
36-
gotts_chain = { path = "./chain", version = "0.0.2" }
37-
gotts_config = { path = "./config", version = "0.0.2" }
38-
gotts_core = { path = "./core", version = "0.0.2" }
39-
gotts_keychain = { path = "./keychain", version = "0.0.2" }
40-
gotts_p2p = { path = "./p2p", version = "0.0.2" }
41-
gotts_servers = { path = "./servers", version = "0.0.2" }
42-
gotts_util = { path = "./util", version = "0.0.2" }
35+
gotts_api = { path = "./api", version = "0.0.3" }
36+
gotts_chain = { path = "./chain", version = "0.0.3" }
37+
gotts_config = { path = "./config", version = "0.0.3" }
38+
gotts_core = { path = "./core", version = "0.0.3" }
39+
gotts_keychain = { path = "./keychain", version = "0.0.3" }
40+
gotts_p2p = { path = "./p2p", version = "0.0.3" }
41+
gotts_servers = { path = "./servers", version = "0.0.3" }
42+
gotts_util = { path = "./util", version = "0.0.3" }
4343

4444
[target.'cfg(windows)'.dependencies]
4545
cursive = { version = "0.12", default-features = false, features = ["pancurses-backend"] }
@@ -53,5 +53,5 @@ cursive = "0.12"
5353
built = "0.3"
5454

5555
[dev-dependencies]
56-
gotts_chain = { path = "./chain", version = "0.0.2" }
57-
gotts_store = { path = "./store", version = "0.0.2" }
56+
gotts_chain = { path = "./chain", version = "0.0.3" }
57+
gotts_store = { path = "./store", version = "0.0.3" }

api/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotts_api"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
55
description = "APIs for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -31,9 +31,9 @@ futures = "0.1.21"
3131
rustls = "0.13"
3232
url = "1.7.0"
3333

34-
gotts_core = { path = "../core", version = "0.0.2" }
35-
gotts_chain = { path = "../chain", version = "0.0.2" }
36-
gotts_p2p = { path = "../p2p", version = "0.0.2" }
37-
gotts_pool = { path = "../pool", version = "0.0.2" }
38-
gotts_store = { path = "../store", version = "0.0.2" }
39-
gotts_util = { path = "../util", version = "0.0.2" }
34+
gotts_core = { path = "../core", version = "0.0.3" }
35+
gotts_chain = { path = "../chain", version = "0.0.3" }
36+
gotts_p2p = { path = "../p2p", version = "0.0.3" }
37+
gotts_pool = { path = "../pool", version = "0.0.3" }
38+
gotts_store = { path = "../store", version = "0.0.3" }
39+
gotts_util = { path = "../util", version = "0.0.3" }

chain/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotts_chain"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
55
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -23,10 +23,10 @@ lru-cache = "0.1"
2323
lazy_static = "1"
2424
regex = "1"
2525

26-
gotts_core = { path = "../core", version = "0.0.2" }
27-
gotts_keychain = { path = "../keychain", version = "0.0.2" }
28-
gotts_store = { path = "../store", version = "0.0.2" }
29-
gotts_util = { path = "../util", version = "0.0.2" }
26+
gotts_core = { path = "../core", version = "0.0.3" }
27+
gotts_keychain = { path = "../keychain", version = "0.0.3" }
28+
gotts_store = { path = "../store", version = "0.0.3" }
29+
gotts_util = { path = "../util", version = "0.0.3" }
3030

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

config/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotts_config"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
55
description = "Configuration for gotts, 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.4"
1717
dirs = "1.0.3"
1818

19-
gotts_core = { path = "../core", version = "0.0.2" }
20-
gotts_servers = { path = "../servers", version = "0.0.2" }
21-
gotts_p2p = { path = "../p2p", version = "0.0.2" }
22-
gotts_util = { path = "../util", version = "0.0.2" }
19+
gotts_core = { path = "../core", version = "0.0.3" }
20+
gotts_servers = { path = "../servers", version = "0.0.3" }
21+
gotts_p2p = { path = "../p2p", version = "0.0.3" }
22+
gotts_util = { path = "../util", version = "0.0.3" }
2323

2424
[dev-dependencies]
2525
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 = "gotts_core"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
55
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -31,8 +31,8 @@ log = "0.4"
3131
chrono = { version = "0.4.4", features = ["serde"] }
3232
zeroize = "0.9"
3333

34-
gotts_keychain = { path = "../keychain", version = "0.0.2" }
35-
gotts_util = { path = "../util", version = "0.0.2" }
34+
gotts_keychain = { path = "../keychain", version = "0.0.3" }
35+
gotts_util = { path = "../util", version = "0.0.3" }
3636

3737
[dev-dependencies]
3838
serde_json = "1"

keychain/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gotts_keychain"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
55
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
66
license = "Apache-2.0"
@@ -29,4 +29,4 @@ ripemd160 = "0.7"
2929
sha2 = "0.7"
3030
pbkdf2 = "0.2"
3131

32-
gotts_util = { path = "../util", version = "0.0.2" }
32+
gotts_util = { path = "../util", version = "0.0.3" }

0 commit comments

Comments
 (0)