From b27f0a41092ef81740b2d686677f78570d14ece5 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Wed, 29 Sep 2021 12:03:42 -0500 Subject: [PATCH] Bump to 0.15.0-alpha.6 --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- distant-core/Cargo.toml | 2 +- distant-ssh2/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7920dd5..180ef5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "distant" -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" dependencies = [ "assert_cmd", "assert_fs", @@ -453,7 +453,7 @@ dependencies = [ [[package]] name = "distant-core" -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" dependencies = [ "assert_fs", "bytes", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "distant-ssh2" -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index 513d069..fcd7367 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "distant" description = "Operate on a remote computer through file and process manipulation" categories = ["command-line-utilities"] keywords = ["cli"] -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" @@ -28,7 +28,7 @@ ssh2 = ["distant-ssh2"] [dependencies] derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] } -distant-core = { version = "=0.15.0-alpha.5", path = "distant-core", features = ["structopt"] } +distant-core = { version = "=0.15.0-alpha.6", path = "distant-core", features = ["structopt"] } flexi_logger = "0.18.0" fork = "0.1.18" log = "0.4.14" @@ -41,7 +41,7 @@ strum = { version = "0.21.0", features = ["derive"] } whoami = "1.1.2" # Optional native SSH functionality -distant-ssh2 = { version = "=0.15.0-alpha.5", path = "distant-ssh2", optional = true } +distant-ssh2 = { version = "=0.15.0-alpha.6", path = "distant-ssh2", optional = true } [dev-dependencies] assert_cmd = "2.0.0" diff --git a/distant-core/Cargo.toml b/distant-core/Cargo.toml index b9b2efb..277edff 100644 --- a/distant-core/Cargo.toml +++ b/distant-core/Cargo.toml @@ -2,7 +2,7 @@ name = "distant-core" description = "Core library for distant, enabling operation on a remote computer through file and process manipulation" categories = ["network-programming"] -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" diff --git a/distant-ssh2/Cargo.toml b/distant-ssh2/Cargo.toml index 2a2d4ef..1dfdd03 100644 --- a/distant-ssh2/Cargo.toml +++ b/distant-ssh2/Cargo.toml @@ -2,7 +2,7 @@ name = "distant-ssh2" description = "Library to enable native ssh-2 protocol for use with distant sessions" categories = ["network-programming"] -version = "0.15.0-alpha.5" +version = "0.15.0-alpha.6" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" [dependencies] async-compat = "0.2.1" -distant-core = { version = "=0.15.0-alpha.5", path = "../distant-core" } +distant-core = { version = "=0.15.0-alpha.6", path = "../distant-core" } futures = "0.3.16" log = "0.4.14" rand = { version = "0.8.4", features = ["getrandom"] }