From eadeb4c75bf60803b728f3359461cf758760b1e9 Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Tue, 16 Aug 2022 23:18:22 -0500 Subject: [PATCH] Release v0.17.2 --- CHANGELOG.md | 2 ++ Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- distant-core/Cargo.toml | 4 ++-- distant-net/Cargo.toml | 2 +- distant-ssh2/Cargo.toml | 4 ++-- 6 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f9e5a7..84cedea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.17.2] - 2022-08-16 ### Added - `replace_scheme` method to `Destination` diff --git a/Cargo.lock b/Cargo.lock index 402ed77..6605953 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -709,7 +709,7 @@ dependencies = [ [[package]] name = "distant" -version = "0.17.1" +version = "0.17.2" dependencies = [ "anyhow", "assert_cmd", @@ -751,7 +751,7 @@ dependencies = [ [[package]] name = "distant-core" -version = "0.17.1" +version = "0.17.2" dependencies = [ "assert_fs", "async-trait", @@ -786,7 +786,7 @@ dependencies = [ [[package]] name = "distant-net" -version = "0.17.1" +version = "0.17.2" dependencies = [ "async-trait", "bytes", @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "distant-ssh2" -version = "0.17.1" +version = "0.17.2" dependencies = [ "anyhow", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index 8859dba..e327644 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.17.1" +version = "0.17.2" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/distant" @@ -32,7 +32,7 @@ clap_complete = "3.2.3" config = { version = "0.13.2", default-features = false, features = ["toml"] } derive_more = { version = "0.99.17", default-features = false, features = ["display", "from", "error", "is_variant"] } dialoguer = { version = "0.10.2", default-features = false } -distant-core = { version = "=0.17.1", path = "distant-core", features = ["clap", "schemars"] } +distant-core = { version = "=0.17.2", path = "distant-core", features = ["clap", "schemars"] } directories = "4.0.1" flexi_logger = "0.23.0" indoc = "1.0.7" @@ -55,7 +55,7 @@ winsplit = "0.1.0" whoami = "1.2.1" # Optional native SSH functionality -distant-ssh2 = { version = "=0.17.1", path = "distant-ssh2", default-features = false, features = ["serde"], optional = true } +distant-ssh2 = { version = "=0.17.2", path = "distant-ssh2", default-features = false, features = ["serde"], optional = true } [target.'cfg(unix)'.dependencies] fork = "0.1.19" diff --git a/distant-core/Cargo.toml b/distant-core/Cargo.toml index 9ee7b76..3f1a131 100644 --- a/distant-core/Cargo.toml +++ b/distant-core/Cargo.toml @@ -3,7 +3,7 @@ name = "distant-core" description = "Core library for distant, enabling operation on a remote computer through file and process manipulation" categories = ["network-programming"] keywords = ["api", "async"] -version = "0.17.1" +version = "0.17.2" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/distant" @@ -19,7 +19,7 @@ async-trait = "0.1.57" bitflags = "1.3.2" bytes = "1.2.1" derive_more = { version = "0.99.17", default-features = false, features = ["as_mut", "as_ref", "deref", "deref_mut", "display", "from", "error", "into", "into_iterator", "is_variant", "try_into"] } -distant-net = { version = "=0.17.1", path = "../distant-net" } +distant-net = { version = "=0.17.2", path = "../distant-net" } futures = "0.3.21" hex = "0.4.3" log = "0.4.17" diff --git a/distant-net/Cargo.toml b/distant-net/Cargo.toml index 1feb04d..79cfcfd 100644 --- a/distant-net/Cargo.toml +++ b/distant-net/Cargo.toml @@ -3,7 +3,7 @@ name = "distant-net" description = "Network library for distant, providing implementations to support client/server architecture" categories = ["network-programming"] keywords = ["api", "async"] -version = "0.17.1" +version = "0.17.2" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/distant" diff --git a/distant-ssh2/Cargo.toml b/distant-ssh2/Cargo.toml index 77851a4..4f34cc7 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.17.1" +version = "0.17.2" authors = ["Chip Senkbeil "] edition = "2021" homepage = "https://github.com/chipsenkbeil/distant" @@ -20,7 +20,7 @@ async-compat = "0.2.1" async-once-cell = "0.4.2" async-trait = "0.1.57" derive_more = { version = "0.99.17", default-features = false, features = ["display", "error"] } -distant-core = { version = "=0.17.1", path = "../distant-core" } +distant-core = { version = "=0.17.2", path = "../distant-core" } futures = "0.3.21" hex = "0.4.3" log = "0.4.17"