From 3da9e9c5237ac6eb9c726729413dba985d8875c4 Mon Sep 17 00:00:00 2001 From: Quentin Le Sceller Date: Mon, 11 Jan 2021 11:50:18 -0500 Subject: [PATCH] [5.0.x] Prepare v5.0.2 release --- Cargo.lock | 14 +++++++------- Cargo.toml | 14 +++++++------- api/Cargo.toml | 10 +++++----- config/Cargo.toml | 4 ++-- controller/Cargo.toml | 12 ++++++------ impls/Cargo.toml | 8 ++++---- libwallet/Cargo.toml | 6 +++--- util/Cargo.toml | 2 +- 8 files changed, 35 insertions(+), 35 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1e7fdf925..8f43f56ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1381,7 +1381,7 @@ dependencies = [ [[package]] name = "grin_wallet" -version = "5.0.1" +version = "5.0.2" dependencies = [ "built", "clap", @@ -1409,7 +1409,7 @@ dependencies = [ [[package]] name = "grin_wallet_api" -version = "5.0.1" +version = "5.0.2" dependencies = [ "base64 0.12.3", "chrono", @@ -1433,7 +1433,7 @@ dependencies = [ [[package]] name = "grin_wallet_config" -version = "5.0.1" +version = "5.0.2" dependencies = [ "dirs 2.0.2", "grin_wallet_util", @@ -1446,7 +1446,7 @@ dependencies = [ [[package]] name = "grin_wallet_controller" -version = "5.0.1" +version = "5.0.2" dependencies = [ "chrono", "easy-jsonrpc-mw", @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "grin_wallet_impls" -version = "5.0.1" +version = "5.0.2" dependencies = [ "blake2-rfc", "byteorder", @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "grin_wallet_libwallet" -version = "5.0.1" +version = "5.0.2" dependencies = [ "age", "base64 0.9.3", @@ -1543,7 +1543,7 @@ dependencies = [ [[package]] name = "grin_wallet_util" -version = "5.0.1" +version = "5.0.2" dependencies = [ "data-encoding", "ed25519-dalek", diff --git a/Cargo.toml b/Cargo.toml index c9b0d8b37..f3d2e1a4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -31,13 +31,13 @@ semver = "0.10" rustyline = "6" lazy_static = "1" -grin_wallet_api = { path = "./api", version = "5.0.1" } -grin_wallet_impls = { path = "./impls", version = "5.0.1" } -grin_wallet_libwallet = { path = "./libwallet", version = "5.0.1" } -grin_wallet_controller = { path = "./controller", version = "5.0.1" } -grin_wallet_config = { path = "./config", version = "5.0.1" } +grin_wallet_api = { path = "./api", version = "5.0.2" } +grin_wallet_impls = { path = "./impls", version = "5.0.2" } +grin_wallet_libwallet = { path = "./libwallet", version = "5.0.2" } +grin_wallet_controller = { path = "./controller", version = "5.0.2" } +grin_wallet_config = { path = "./config", version = "5.0.2" } -grin_wallet_util = { path = "./util", version = "5.0.1" } +grin_wallet_util = { path = "./util", version = "5.0.2" } [build-dependencies] built = { version = "0.4", features = ["git2"]} diff --git a/api/Cargo.toml b/api/Cargo.toml index 538347f5c..3210b1c12 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_api" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Grin Wallet API" license = "Apache-2.0" @@ -24,10 +24,10 @@ ring = "0.16" base64 = "0.12" ed25519-dalek = "1.0.0-pre.4" -grin_wallet_libwallet = { path = "../libwallet", version = "5.0.1" } -grin_wallet_config = { path = "../config", version = "5.0.1" } -grin_wallet_impls = { path = "../impls", version = "5.0.1" } -grin_wallet_util = { path = "../util", version = "5.0.1" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.0.2" } +grin_wallet_config = { path = "../config", version = "5.0.2" } +grin_wallet_impls = { path = "../impls", version = "5.0.2" } +grin_wallet_util = { path = "../util", version = "5.0.2" } [dev-dependencies] serde_json = "1" diff --git a/config/Cargo.toml b/config/Cargo.toml index 00fa4e2e4..1132afda0 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_config" -version = "5.0.1" +version = "5.0.2" 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.5" dirs = "2.0" -grin_wallet_util = { path = "../util", version = "5.0.1" } +grin_wallet_util = { path = "../util", version = "5.0.2" } [dev-dependencies] pretty_assertions = "0.6" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index d7dd4cbce..058f78f62 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_controller" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Controllers for grin wallet instantiation" license = "Apache-2.0" @@ -30,12 +30,12 @@ chrono = { version = "0.4.11", features = ["serde"] } easy-jsonrpc-mw = "0.5.4" lazy_static = "1" -grin_wallet_util = { path = "../util", version = "5.0.1" } +grin_wallet_util = { path = "../util", version = "5.0.2" } -grin_wallet_api = { path = "../api", version = "5.0.1" } -grin_wallet_impls = { path = "../impls", version = "5.0.1" } -grin_wallet_libwallet = { path = "../libwallet", version = "5.0.1" } -grin_wallet_config = { path = "../config", version = "5.0.1" } +grin_wallet_api = { path = "../api", version = "5.0.2" } +grin_wallet_impls = { path = "../impls", version = "5.0.2" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.0.2" } +grin_wallet_config = { path = "../config", version = "5.0.2" } [dev-dependencies] ed25519-dalek = "1.0.0-pre.4" diff --git a/impls/Cargo.toml b/impls/Cargo.toml index 701fb164d..a031a0f14 100644 --- a/impls/Cargo.toml +++ b/impls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_impls" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Concrete types derived from libwallet traits" license = "Apache-2.0" @@ -41,6 +41,6 @@ regex = "1.3" timer = "0.2" sysinfo = "0.14" -grin_wallet_util = { path = "../util", version = "5.0.1" } -grin_wallet_config = { path = "../config", version = "5.0.1" } -grin_wallet_libwallet = { path = "../libwallet", version = "5.0.1" } +grin_wallet_util = { path = "../util", version = "5.0.2" } +grin_wallet_config = { path = "../config", version = "5.0.2" } +grin_wallet_libwallet = { path = "../libwallet", version = "5.0.2" } diff --git a/libwallet/Cargo.toml b/libwallet/Cargo.toml index 5a50649bf..f0ea4bddb 100644 --- a/libwallet/Cargo.toml +++ b/libwallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_libwallet" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" @@ -36,6 +36,6 @@ secrecy = "0.6" bech32 = "0.7" byteorder = "1.3" -grin_wallet_util = { path = "../util", version = "5.0.1" } -grin_wallet_config = { path = "../config", version = "5.0.1" } +grin_wallet_util = { path = "../util", version = "5.0.2" } +grin_wallet_config = { path = "../config", version = "5.0.2" } diff --git a/util/Cargo.toml b/util/Cargo.toml index 03d94af1b..a09fd2a9e 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_wallet_util" -version = "5.0.1" +version = "5.0.2" authors = ["Grin Developers "] description = "Util, for generic utilities and to re-export grin crates" license = "Apache-2.0"