From 2122a5ba39ec6a483f15c9728dfee3b504b8252d Mon Sep 17 00:00:00 2001 From: Chip Senkbeil Date: Mon, 15 Nov 2021 20:41:29 -0600 Subject: [PATCH] Bump to v0.15.1 --- .github/workflows/ci-windows.yml | 2 +- CHANGELOG.md | 5 ++++- Cargo.toml | 6 +++--- distant-core/Cargo.toml | 2 +- distant-lua/Cargo.toml | 6 +++--- distant-ssh2/Cargo.toml | 4 ++-- 6 files changed, 14 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml index 23cf3a4..861d514 100644 --- a/.github/workflows/ci-windows.yml +++ b/.github/workflows/ci-windows.yml @@ -76,5 +76,5 @@ jobs: env: LUA_INC: ${{ github.workspace }}\.lua\include LUA_LIB: ${{ github.workspace }}\.lua\lib - LUA_LIB_NAME: lua + LUA_LIB_NAME: lua51 if: steps.changes.outputs.lua == 'true' diff --git a/CHANGELOG.md b/CHANGELOG.md index 496fec5..981a254 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.15.1] - 2021-11-15 ### Added - `--key-from-stdin` option to listen cli command to read key from stdin instead of generating @@ -67,5 +69,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 pending upon full channel and no longer locks up - stdout, stderr, and stdin of `RemoteProcess` no longer cause deadlock -[Unreleased]: https://github.com/chipsenkbeil/distant/compare/v0.15.0...HEAD +[Unreleased]: https://github.com/chipsenkbeil/distant/compare/v0.15.1...HEAD +[0.15.1]: https://github.com/chipsenkbeil/distant/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/chipsenkbeil/distant/compare/v0.14.0...v0.15.0 diff --git a/Cargo.toml b/Cargo.toml index 0a49df5..79151b7 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" +version = "0.15.1" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" @@ -25,7 +25,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", path = "distant-core", features = ["structopt"] } +distant-core = { version = "=0.15.1", path = "distant-core", features = ["structopt"] } flexi_logger = "0.18.0" log = "0.4.14" once_cell = "1.8.0" @@ -37,7 +37,7 @@ strum = { version = "0.21.0", features = ["derive"] } whoami = "1.1.2" # Optional native SSH functionality -distant-ssh2 = { version = "=0.15.0", path = "distant-ssh2", optional = true } +distant-ssh2 = { version = "=0.15.1", path = "distant-ssh2", optional = true } [target.'cfg(unix)'.dependencies] fork = "0.1.18" diff --git a/distant-core/Cargo.toml b/distant-core/Cargo.toml index 973821f..c25c9ed 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.15.0" +version = "0.15.1" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" diff --git a/distant-lua/Cargo.toml b/distant-lua/Cargo.toml index a0e1570..4c12beb 100644 --- a/distant-lua/Cargo.toml +++ b/distant-lua/Cargo.toml @@ -3,7 +3,7 @@ name = "distant-lua" description = "Lua bindings to the distant Rust crates" categories = ["api-bindings", "network-programming"] keywords = ["api", "async"] -version = "0.15.0" +version = "0.15.1" authors = ["Chip Senkbeil "] edition = "2018" homepage = "https://github.com/chipsenkbeil/distant" @@ -24,8 +24,8 @@ luajit = ["mlua/luajit"] vendored = ["mlua/vendored"] [dependencies] -distant-core = { version = "=0.15.0", path = "../distant-core" } -distant-ssh2 = { version = "=0.15.0", features = ["serde"], path = "../distant-ssh2" } +distant-core = { version = "=0.15.1", path = "../distant-core" } +distant-ssh2 = { version = "=0.15.1", features = ["serde"], path = "../distant-ssh2" } futures = "0.3.17" log = "0.4.14" mlua = { version = "0.6.6", features = ["async", "macros", "module", "serialize"] } diff --git a/distant-ssh2/Cargo.toml b/distant-ssh2/Cargo.toml index f7728bb..8b47e3f 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" +version = "0.15.1" 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", path = "../distant-core" } +distant-core = { version = "=0.15.1", path = "../distant-core" } futures = "0.3.16" log = "0.4.14" rand = { version = "0.8.4", features = ["getrandom"] }