diff options
author | Wez Furlong <wez@wezfurlong.org> | 2019-10-20 09:40:54 +0100 |
---|---|---|
committer | Wez Furlong <wez@wezfurlong.org> | 2019-10-20 09:40:54 +0100 |
commit | 63fea2bac0cedd7316777db1e42531e848f9a2d5 (patch) | |
tree | 7e300d67e2657f51d4ea9dac5b3d78934a521565 | |
parent | 5aa582132909a9159b810ec175b039900862fb39 (diff) | |
download | ssh2-rs-63fea2bac0cedd7316777db1e42531e848f9a2d5.zip |
version bumps
This is largely to accomodate making Session Send again, so go
from 0.4 -> 0.5.
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | libssh2-sys/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "ssh2" -version = "0.4.0" +version = "0.5.0" 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.0.4" libc = "0.2" -libssh2-sys = { path = "libssh2-sys", version = "0.2.12" } +libssh2-sys = { path = "libssh2-sys", version = "0.2.13" } [dev-dependencies] tempdir = "0.3" @@ -11,7 +11,7 @@ Rust bindings to libssh2, an ssh client library. ```toml # Cargo.toml [dependencies] -ssh2 = "0.4" +ssh2 = "0.5" ``` ## Building on OSX 10.10+ diff --git a/libssh2-sys/Cargo.toml b/libssh2-sys/Cargo.toml index 46038b2..6d23e78 100644 --- a/libssh2-sys/Cargo.toml +++ b/libssh2-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libssh2-sys" -version = "0.2.12" +version = "0.2.13" authors = ["Alex Crichton <alex@alexcrichton.com>", "Wez Furlong <wez@wezfurlong.org>"] links = "ssh2" build = "build.rs" |