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 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
garyyu committed Dec 6, 2019
1 parent f38318a commit 87e526d
Show file tree
Hide file tree
Showing 9 changed files with 128 additions and 128 deletions.
162 changes: 81 additions & 81 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet"
version = "0.0.4"
version = "0.0.5"
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 @@ -31,13 +31,13 @@ log = "0.4"
linefeed = "0.5"
semver = "0.9"

gotts_wallet_api = { path = "./api", version = "0.0.4" }
gotts_wallet_impls = { path = "./impls", version = "0.0.4" }
gotts_wallet_libwallet = { path = "./libwallet", version = "0.0.4" }
gotts_wallet_controller = { path = "./controller", version = "0.0.4" }
gotts_wallet_config = { path = "./config", version = "0.0.4" }
gotts_wallet_api = { path = "./api", version = "0.0.5" }
gotts_wallet_impls = { path = "./impls", version = "0.0.5" }
gotts_wallet_libwallet = { path = "./libwallet", version = "0.0.5" }
gotts_wallet_controller = { path = "./controller", version = "0.0.5" }
gotts_wallet_config = { path = "./config", version = "0.0.5" }

gotts_wallet_util = { path = "./util", version = "0.0.4" }
gotts_wallet_util = { path = "./util", version = "0.0.5" }

[build-dependencies]
built = "0.3"
10 changes: 5 additions & 5 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet_api"
version = "0.0.4"
version = "0.0.5"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Grin Wallet API"
license = "Apache-2.0"
Expand All @@ -18,11 +18,11 @@ serde_json = "1"
easy-jsonrpc = "0.5.1"
chrono = { version = "0.4.4", features = ["serde"] }

gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.4" }
gotts_wallet_config = { path = "../config", version = "0.0.4" }
gotts_wallet_impls = { path = "../impls", version = "0.0.4" }
gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.5" }
gotts_wallet_config = { path = "../config", version = "0.0.5" }
gotts_wallet_impls = { path = "../impls", version = "0.0.5" }

gotts_wallet_util = { path = "../util", version = "0.0.4" }
gotts_wallet_util = { path = "../util", version = "0.0.5" }

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

gotts_wallet_util = { path = "../util", version = "0.0.4" }
gotts_wallet_util = { path = "../util", version = "0.0.5" }

[dev-dependencies]
pretty_assertions = "0.5.1"
12 changes: 6 additions & 6 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet_controller"
version = "0.0.4"
version = "0.0.5"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Controllers for gotts wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -33,9 +33,9 @@ chrono = { version = "0.4.4", features = ["serde"] }
easy-jsonrpc = "0.5.1"
lazy_static = "1"

gotts_wallet_util = { path = "../util", version = "0.0.4" }
gotts_wallet_util = { path = "../util", version = "0.0.5" }

gotts_wallet_api = { path = "../api", version = "0.0.4" }
gotts_wallet_impls = { path = "../impls", version = "0.0.4" }
gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.4" }
gotts_wallet_config = { path = "../config", version = "0.0.4" }
gotts_wallet_api = { path = "../api", version = "0.0.5" }
gotts_wallet_impls = { path = "../impls", version = "0.0.5" }
gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.5" }
gotts_wallet_config = { path = "../config", version = "0.0.5" }
8 changes: 4 additions & 4 deletions impls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet_impls"
version = "0.0.4"
version = "0.0.5"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand All @@ -26,7 +26,7 @@ tokio-retry = "0.1"
uuid = { version = "0.7", features = ["serde", "v4"] }
chrono = { version = "0.4.4", features = ["serde"] }

gotts_wallet_util = { path = "../util", version = "0.0.4" }
gotts_wallet_util = { path = "../util", version = "0.0.5" }

gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.4" }
gotts_wallet_config = { path = "../config", version = "0.0.4" }
gotts_wallet_libwallet = { path = "../libwallet", version = "0.0.5" }
gotts_wallet_config = { path = "../config", version = "0.0.5" }
6 changes: 3 additions & 3 deletions libwallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet_libwallet"
version = "0.0.4"
version = "0.0.5"
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 All @@ -27,5 +27,5 @@ lazy_static = "1"
strum = "0.15"
strum_macros = "0.15"

gotts_wallet_util = { path = "../util", version = "0.0.4" }
gotts_wallet_config = { path = "../config", version = "0.0.4" }
gotts_wallet_util = { path = "../util", version = "0.0.5" }
gotts_wallet_config = { path = "../config", version = "0.0.5" }
2 changes: 1 addition & 1 deletion src/bin/gotts-wallet.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: gotts-wallet
version: "0.0.4"
version: "0.0.5"
about: Gotts Wallet.
author: The Gotts Developers.

Expand Down
38 changes: 19 additions & 19 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gotts_wallet_util"
version = "0.0.4"
version = "0.0.5"
authors = ["Gotts Developers <gotts.tech@lists.launchpad.net>"]
description = "Util, for generic utilities and to re-export gotts crates"
license = "Apache-2.0"
Expand All @@ -21,28 +21,28 @@ toml = "0.4"
dirs = "1.0.3"

# For Release
gotts_core = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_keychain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_chain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_util = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_api = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_store = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4" }
gotts_core = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }
gotts_keychain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }
gotts_chain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }
gotts_util = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }
gotts_api = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }
gotts_store = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5" }

# For beta release
#gotts_core = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_keychain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_chain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_util = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_api = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_store = { git = "https://github.com/gottstech/gotts", tag = "v0.0.4-beta.1" }
#gotts_core = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }
#gotts_keychain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }
#gotts_chain = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }
#gotts_util = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }
#gotts_api = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }
#gotts_store = { git = "https://github.com/gottstech/gotts", tag = "v0.0.5-beta.1" }

# For bleeding edge
#gotts_core = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_keychain = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_chain = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_util = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_api = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_store = { git = "https://github.com/gottstech/gotts", rev = "113008f" }
#gotts_core = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }
#gotts_keychain = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }
#gotts_chain = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }
#gotts_util = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }
#gotts_api = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }
#gotts_store = { git = "https://github.com/gottstech/gotts", rev = "7d82c78" }

# For local testing
#gotts_core = { path = "../../gotts/core"}
Expand Down

0 comments on commit 87e526d

Please sign in to comment.