diff options
author | Wez Furlong <wez@wezfurlong.org> | 2020-06-29 08:58:14 -0700 |
---|---|---|
committer | Wez Furlong <wez@wezfurlong.org> | 2020-06-29 08:59:53 -0700 |
commit | 5fe0a8cd26aa001209e1fbc99e1ecc48a9b18d61 (patch) | |
tree | 4815b212832178cde6806f64d06df8362e453330 | |
parent | e8d4dc165fbcd3fceeec96db9d1e9be9b67bef7b (diff) | |
download | ssh2-rs-5fe0a8cd26aa001209e1fbc99e1ecc48a9b18d61.zip |
gersion bump to reflect bundled libssh2 change
refs: https://github.com/alexcrichton/ssh2-rs/issues/187
refs: https://github.com/alexcrichton/ssh2-rs/issues/191
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | libssh2-sys/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "ssh2" -version = "0.8.1" +version = "0.8.2" authors = ["Alex Crichton <alex@alexcrichton.com>", "Wez Furlong <wez@wezfurlong.org>"] license = "MIT/Apache-2.0" keywords = ["ssh"] @@ -19,7 +19,7 @@ vendored-openssl = ["libssh2-sys/vendored-openssl"] [dependencies] bitflags = "1.2" libc = "0.2" -libssh2-sys = { path = "libssh2-sys", version = "0.2.16" } +libssh2-sys = { path = "libssh2-sys", version = "0.2.18" } parking_lot = "0.10" [dev-dependencies] diff --git a/libssh2-sys/Cargo.toml b/libssh2-sys/Cargo.toml index f57f5bd..2bffdba 100644 --- a/libssh2-sys/Cargo.toml +++ b/libssh2-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libssh2-sys" -version = "0.2.17" +version = "0.2.18" authors = ["Alex Crichton <alex@alexcrichton.com>", "Wez Furlong <wez@wezfurlong.org>"] links = "ssh2" build = "build.rs" |