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

Commit

Permalink
Bump the version to v0.0.6 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
garyyu authored Dec 11, 2019
1 parent 4c1354a commit b07b505
Show file tree
Hide file tree
Showing 14 changed files with 117 additions and 117 deletions.
114 changes: 57 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -32,14 +32,14 @@ term = "0.5"
failure = "0.1"
failure_derive = "0.1"

gotts_api = { path = "./api", version = "0.0.5" }
gotts_chain = { path = "./chain", version = "0.0.5" }
gotts_config = { path = "./config", version = "0.0.5" }
gotts_core = { path = "./core", version = "0.0.5" }
gotts_keychain = { path = "./keychain", version = "0.0.5" }
gotts_p2p = { path = "./p2p", version = "0.0.5" }
gotts_servers = { path = "./servers", version = "0.0.5" }
gotts_util = { path = "./util", version = "0.0.5" }
gotts_api = { path = "./api", version = "0.0.6" }
gotts_chain = { path = "./chain", version = "0.0.6" }
gotts_config = { path = "./config", version = "0.0.6" }
gotts_core = { path = "./core", version = "0.0.6" }
gotts_keychain = { path = "./keychain", version = "0.0.6" }
gotts_p2p = { path = "./p2p", version = "0.0.6" }
gotts_servers = { path = "./servers", version = "0.0.6" }
gotts_util = { path = "./util", version = "0.0.6" }

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

[dev-dependencies]
gotts_chain = { path = "./chain", version = "0.0.5" }
gotts_store = { path = "./store", version = "0.0.5" }
gotts_chain = { path = "./chain", version = "0.0.6" }
gotts_store = { path = "./store", version = "0.0.6" }
14 changes: 7 additions & 7 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_api"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "APIs for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -31,9 +31,9 @@ futures = "0.1.21"
rustls = "0.13"
url = "1.7.0"

gotts_core = { path = "../core", version = "0.0.5" }
gotts_chain = { path = "../chain", version = "0.0.5" }
gotts_p2p = { path = "../p2p", version = "0.0.5" }
gotts_pool = { path = "../pool", version = "0.0.5" }
gotts_store = { path = "../store", version = "0.0.5" }
gotts_util = { path = "../util", version = "0.0.5" }
gotts_core = { path = "../core", version = "0.0.6" }
gotts_chain = { path = "../chain", version = "0.0.6" }
gotts_p2p = { path = "../p2p", version = "0.0.6" }
gotts_pool = { path = "../pool", version = "0.0.6" }
gotts_store = { path = "../store", version = "0.0.6" }
gotts_util = { path = "../util", version = "0.0.6" }
10 changes: 5 additions & 5 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_chain"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -23,10 +23,10 @@ lru-cache = "0.1"
lazy_static = "1"
regex = "1"

gotts_core = { path = "../core", version = "0.0.5" }
gotts_keychain = { path = "../keychain", version = "0.0.5" }
gotts_store = { path = "../store", version = "0.0.5" }
gotts_util = { path = "../util", version = "0.0.5" }
gotts_core = { path = "../core", version = "0.0.6" }
gotts_keychain = { path = "../keychain", version = "0.0.6" }
gotts_store = { path = "../store", version = "0.0.6" }
gotts_util = { path = "../util", version = "0.0.6" }

[dev-dependencies]
env_logger = "0.5"
Expand Down
10 changes: 5 additions & 5 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_config"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Configuration for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -16,10 +16,10 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

gotts_core = { path = "../core", version = "0.0.5" }
gotts_servers = { path = "../servers", version = "0.0.5" }
gotts_p2p = { path = "../p2p", version = "0.0.5" }
gotts_util = { path = "../util", version = "0.0.5" }
gotts_core = { path = "../core", version = "0.0.6" }
gotts_servers = { path = "../servers", version = "0.0.6" }
gotts_p2p = { path = "../p2p", version = "0.0.6" }
gotts_util = { path = "../util", version = "0.0.6" }

[dev-dependencies]
pretty_assertions = "0.5.1"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_core"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -31,8 +31,8 @@ log = "0.4"
chrono = { version = "0.4.4", features = ["serde"] }
zeroize = "0.9"

gotts_keychain = { path = "../keychain", version = "0.0.5" }
gotts_util = { path = "../util", version = "0.0.5" }
gotts_keychain = { path = "../keychain", version = "0.0.6" }
gotts_util = { path = "../util", version = "0.0.6" }

[dev-dependencies]
serde_json = "1"
2 changes: 1 addition & 1 deletion core/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_core-fuzz"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
publish = false

Expand Down
4 changes: 2 additions & 2 deletions keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_keychain"
version = "0.0.5"
version = "0.0.6"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Chain implementation for gotts, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -31,4 +31,4 @@ ripemd160 = "0.7"
sha2 = "0.7"
pbkdf2 = "0.2"

gotts_util = { path = "../util", version = "0.0.5" }
gotts_util = { path = "../util", version = "0.0.6" }
Loading

0 comments on commit b07b505

Please sign in to comment.