diff --git a/Cargo.toml b/Cargo.toml index 40a64770..bd11551c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet" -version = "1.1.0" +version = "1.1.1-beta.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -29,13 +29,13 @@ prettytable-rs = "0.7" log = "0.4" linefeed = "0.5" -grin_wallet_api = { path = "./api", version = "1.1.0" } -grin_wallet_impls = { path = "./impls", version = "1.1.0" } -grin_wallet_libwallet = { path = "./libwallet", version = "1.1.0" } -grin_wallet_controller = { path = "./controller", version = "1.1.0" } -grin_wallet_config = { path = "./config", version = "1.1.0" } +grin_wallet_api = { path = "./api", version = "1.1.1-beta.1" } +grin_wallet_impls = { path = "./impls", version = "1.1.1-beta.1" } +grin_wallet_libwallet = { path = "./libwallet", version = "1.1.1-beta.1" } +grin_wallet_controller = { path = "./controller", version = "1.1.1-beta.1" } +grin_wallet_config = { path = "./config", version = "1.1.1-beta.1" } -grin_wallet_util = { path = "./util", version = "1.1.0" } +grin_wallet_util = { path = "./util", version = "1.1.1-beta.1" } [build-dependencies] built = "0.3" diff --git a/api/Cargo.toml b/api/Cargo.toml index 571cbbfa..71857e3c 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_api" -version = "1.1.0" +version = "1.1.1-beta.1" authors = ["Grin Developers "] description = "Grin Wallet API" license = "Apache-2.0" @@ -18,11 +18,11 @@ serde_json = "1" easy-jsonrpc = "0.5.1" chrono = { version = "0.4.4", features = ["serde"] } -grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0" } -grin_wallet_config = { path = "../config", version = "1.1.0" } -grin_wallet_impls = { path = "../impls", version = "1.1.0" } +grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0-beta.1" } +grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" } +grin_wallet_impls = { path = "../impls", version = "1.1.0-beta.1" } -grin_wallet_util = { path = "../util", version = "1.1.0" } +grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } [dev-dependencies] serde_json = "1" diff --git a/config/Cargo.toml b/config/Cargo.toml index af34723c..6ccb8ad2 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_config" -version = "1.1.0" +version = "1.1.0-beta.1" authors = ["Grin Developers "] description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -16,7 +16,7 @@ serde_derive = "1" toml = "0.4" dirs = "1.0.3" -grin_wallet_util = { path = "../util", version = "1.1.0" } +grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } [dev-dependencies] pretty_assertions = "0.5.1" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index c48857e2..2bbbaaa5 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_controller" -version = "1.1.0" +version = "1.1.0-beta.1" authors = ["Grin Developers "] description = "Controllers for grin wallet instantiation" license = "Apache-2.0" @@ -32,9 +32,9 @@ chrono = { version = "0.4.4", features = ["serde"] } easy-jsonrpc = "0.5.1" lazy_static = "1" -grin_wallet_util = { path = "../util", version = "1.1.0" } +grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } -grin_wallet_api = { path = "../api", version = "1.1.0" } -grin_wallet_impls = { path = "../impls", version = "1.1.0" } -grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0" } -grin_wallet_config = { path = "../config", version = "1.1.0" } +grin_wallet_api = { path = "../api", version = "1.1.0-beta.1" } +grin_wallet_impls = { path = "../impls", version = "1.1.0-beta.1" } +grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0-beta.1" } +grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" } diff --git a/impls/Cargo.toml b/impls/Cargo.toml index eb3499ff..631bb15e 100644 --- a/impls/Cargo.toml +++ b/impls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_impls" -version = "1.1.0" +version = "1.1.0-beta.1" authors = ["Grin Developers "] description = "Concrete types derived from libwallet traits" license = "Apache-2.0" @@ -26,7 +26,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 = "1.1.0" } +grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } -grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0" } -grin_wallet_config = { path = "../config", version = "1.1.0" } +grin_wallet_libwallet = { path = "../libwallet", version = "1.1.0-beta.1" } +grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" } diff --git a/libwallet/Cargo.toml b/libwallet/Cargo.toml index 0ec93ecd..e0bdcc29 100644 --- a/libwallet/Cargo.toml +++ b/libwallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_libwallet" -version = "1.1.0" +version = "1.1.0-beta.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -25,7 +25,7 @@ lazy_static = "1" strum = "0.15" strum_macros = "0.15" -grin_wallet_util = { path = "../util", version = "1.1.0" } +grin_wallet_util = { path = "../util", version = "1.1.0-beta.1" } [dev-dependencies] -grin_wallet_config = { path = "../config", version = "1.1.0" } +grin_wallet_config = { path = "../config", version = "1.1.0-beta.1" } diff --git a/src/bin/grin-wallet.yml b/src/bin/grin-wallet.yml index 72525cc3..80d8dd65 100644 --- a/src/bin/grin-wallet.yml +++ b/src/bin/grin-wallet.yml @@ -1,5 +1,5 @@ name: grin-wallet -version: "1.1.0" +version: "1.1.1-beta.1" about: Reference Grin Wallet author: The Grin Team diff --git a/util/Cargo.toml b/util/Cargo.toml index e0ee0bfd..e4bf0271 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_util" -version = "1.1.0" +version = "1.1.0-beta.1" authors = ["Grin Developers "] description = "Util, for generic utilities and to re-export grin crates" license = "Apache-2.0" @@ -17,12 +17,12 @@ toml = "0.4" dirs = "1.0.3" # For Release -grin_core = "1.1.0" -grin_keychain = "1.1.0" -grin_chain = "1.1.0" -grin_util = "1.1.0" -grin_api = "1.1.0" -grin_store = "1.1.0" +#grin_core = "1.1.0" +#grin_keychain = "1.1.0" +#grin_chain = "1.1.0" +#grin_util = "1.1.0" +#grin_api = "1.1.0" +#grin_store = "1.1.0" # For beta release # grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v1.1.0-beta.2" } @@ -33,12 +33,12 @@ grin_store = "1.1.0" # grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v1.1.0-beta.2" } # For bleeding edge -# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" } -# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" } -# grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" } -# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } -# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" } -# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" } +grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" } # For local testing #grin_core = { path = "../../grin/core", version= "1.1.0-beta.2"}