Skip to content

Commit

Permalink
Update to 0.16.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chipsenkbeil committed May 13, 2022
1 parent b535178 commit 10d66db
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Removed

## [0.16.1] - 2022-05-13
### Changed
- Lock in to Rust openssl 0.10.38 as it is the last version that supports using
openssl 3.x.x before reverting

## [0.16.0] - 2022-05-12
### Added
- New `environment` session type that prints out environment variable
Expand Down
36 changes: 33 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0"
version = "0.16.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand All @@ -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.16.0", path = "distant-core", features = ["structopt"] }
distant-core = { version = "=0.16.1", path = "distant-core", features = ["structopt"] }
flexi_logger = "0.18.0"
indoc = "1.0.3"
log = "0.4.14"
Expand All @@ -42,7 +42,7 @@ termwiz = "0.15.0"
whoami = "1.1.2"

# Optional native SSH functionality
distant-ssh2 = { version = "=0.16.0", path = "distant-ssh2", features = ["serde"], optional = true }
distant-ssh2 = { version = "=0.16.1", path = "distant-ssh2", features = ["serde"], optional = true }

[target.'cfg(unix)'.dependencies]
fork = "0.1.18"
Expand Down
2 changes: 1 addition & 1 deletion distant-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0"
version = "0.16.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand Down
12 changes: 10 additions & 2 deletions distant-ssh2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0"
version = "0.16.1"
authors = ["Chip Senkbeil <[email protected]>"]
edition = "2018"
homepage = "https://github.com/chipsenkbeil/distant"
Expand All @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
async-compat = "0.2.1"
distant-core = { version = "=0.16.0", path = "../distant-core" }
distant-core = { version = "=0.16.1", path = "../distant-core" }
futures = "0.3.16"
log = "0.4.14"
rand = { version = "0.8.4", features = ["getrandom"] }
Expand All @@ -22,6 +22,14 @@ smol = "1.2"
tokio = { version = "1.12.0", features = ["full"] }
wezterm-ssh = { version = "0.4.0", features = ["vendored-openssl"] }

# Constrained to the last version of openssl that builds together with
# `openssl-sys = "=0.9.71"` which we are constrained to in libssh-rs used
# by wezterm-ssh until it switches back to openssl 3.x.
# https://github.com/sfackler/rust-openssl/issues/1630
# https://github.com/sfackler/rust-openssl/pull/1578
# https://github.com/wez/libssh-rs/blob/main/libssh-rs-sys/Cargo.toml
openssl = "=0.10.38"

# Optional serde support for data structures
serde = { version = "1.0.126", features = ["derive"], optional = true }

Expand Down

0 comments on commit 10d66db

Please sign in to comment.