Skip to content
This repository has been archived by the owner on Jan 14, 2020. It is now read-only.

Commit

Permalink
Bump the version number to 2.0.1-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
garyyu committed Aug 22, 2019
1 parent d377ee8 commit 81c4c51
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 69 deletions.
68 changes: 34 additions & 34 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -33,14 +33,14 @@ semver = "0.9"
regex = "1"


grin_wallet_api = { path = "./api", version = "2.0.1-beta.2" }
grin_wallet_impls = { path = "./impls", version = "2.0.1-beta.2" }
grin_wallet_libwallet = { path = "./libwallet", version = "2.0.1-beta.2" }
grin_wallet_controller = { path = "./controller", version = "2.0.1-beta.2" }
grin_wallet_config = { path = "./config", version = "2.0.1-beta.2" }
grin_wallet_api = { path = "./api", version = "2.0.1-beta.3" }
grin_wallet_impls = { path = "./impls", version = "2.0.1-beta.3" }
grin_wallet_libwallet = { path = "./libwallet", version = "2.0.1-beta.3" }
grin_wallet_controller = { path = "./controller", version = "2.0.1-beta.3" }
grin_wallet_config = { path = "./config", version = "2.0.1-beta.3" }

grin_wallet_util = { path = "./util", version = "2.0.1-beta.2" }
grin_wallet_relay = { path = "./grinrelay", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "./util", version = "2.0.1-beta.3" }
grin_wallet_relay = { path = "./grinrelay", version = "2.0.1-beta.3" }

[build-dependencies]
built = "0.3"
Expand Down
12 changes: 6 additions & 6 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_api"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Grin Wallet API"
license = "Apache-2.0"
Expand All @@ -18,12 +18,12 @@ serde_json = "1"
easy-jsonrpc = "0.5.1"
chrono = { version = "0.4.4", features = ["serde"] }

grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.2" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.2" }
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.3" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.3" }
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.3" }

grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_relay = { path = "../grinrelay", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }
grin_wallet_relay = { path = "../grinrelay", version = "2.0.1-beta.3" }

[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 = "grin_wallet_config"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -20,7 +20,7 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }

[dev-dependencies]
pretty_assertions = "0.5.1"
14 changes: 7 additions & 7 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_controller"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Controllers for grin wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -35,13 +35,13 @@ chrono = { version = "0.4.4", features = ["serde"] }
easy-jsonrpc = "0.5.1"
lazy_static = "1"

grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }

grin_wallet_api = { path = "../api", version = "2.0.1-beta.2" }
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.2" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.2" }
grin_wallet_relay = { path = "../grinrelay", version = "2.0.1-beta.2" }
grin_wallet_api = { path = "../api", version = "2.0.1-beta.3" }
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.3" }
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.3" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.3" }
grin_wallet_relay = { path = "../grinrelay", version = "2.0.1-beta.3" }

[features]
ssl = ["grin_wallet_relay/ssl"]
6 changes: 3 additions & 3 deletions grinrelay/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_relay"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Gary Yu <gairy.yu@gmail.com>"]
description = "Grin Relay API"
license = "Apache-2.0"
Expand Down Expand Up @@ -32,8 +32,8 @@ sha2 = "0.7"
ws = { version="0.8" }

grin_secp256k1zkp = { version = "0.7.7", features = ["bullet-proof-sizing"]}
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.3" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }

[dependencies.openssl]
optional = true
Expand Down
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 = "grin_wallet_impls"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand All @@ -27,7 +27,7 @@ tokio-retry = "0.1"
uuid = { version = "0.7", features = ["serde", "v4"] }
chrono = { version = "0.4.4", features = ["serde"] }

grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }

grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.2" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.3" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.3" }
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 = "grin_wallet_libwallet"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@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"

grin_wallet_util = { path = "../util", version = "2.0.1-beta.2" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.2" }
grin_wallet_util = { path = "../util", version = "2.0.1-beta.3" }
grin_wallet_config = { path = "../config", version = "2.0.1-beta.3" }
2 changes: 1 addition & 1 deletion src/bin/grin-wallet.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: GrinWallet+
version: "2.0.1-beta.2"
version: "2.0.1-beta.3"
about: Grin Wallet with Embedded Relay Address Service.
author: The Grin & Gotts Team.

Expand Down
2 changes: 1 addition & 1 deletion util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_util"
version = "2.0.1-beta.2"
version = "2.0.1-beta.3"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
Expand Down

0 comments on commit 81c4c51

Please sign in to comment.