summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@wezfurlong.org>2019-10-20 09:40:54 +0100
committerWez Furlong <wez@wezfurlong.org>2019-10-20 09:40:54 +0100
commit63fea2bac0cedd7316777db1e42531e848f9a2d5 (patch)
tree7e300d67e2657f51d4ea9dac5b3d78934a521565
parent5aa582132909a9159b810ec175b039900862fb39 (diff)
downloadssh2-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.toml4
-rw-r--r--README.md2
-rw-r--r--libssh2-sys/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 983facb..a4d6abb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/README.md b/README.md
index 51877e1..38f60ef 100644
--- a/README.md
+++ b/README.md
@@ -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"