summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2017-06-16 21:37:31 +0100
committerJoseph Birr-Pixton <jpixton@gmail.com>2017-06-16 21:39:56 +0100
commitffbd38100f4350374ddcf0a217a88ee3b83baba6 (patch)
tree69afb8974e46b3a209299f756944f055b9c2d1dd
parent0d6bb1cde665c3fd855987ec075145b9d50a4585 (diff)
0.9.0v/0.9.0
-rw-r--r--Cargo.toml10
-rw-r--r--README.md5
2 files changed, 10 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8d456375..d167100b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls"
-version = "0.8.0"
+version = "0.9.0"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
@@ -12,10 +12,10 @@ categories = ["network-programming", "cryptography"]
[dependencies]
untrusted = "0.5"
time = "0.1.37"
-base64 = "0.5"
+base64 = "0.6"
log = { version = "0.3.6", optional = true }
-ring = { version = "0.9", features = ["rsa_signing"] }
-webpki = "0.12"
+ring = { version = "0.11", features = ["rsa_signing"] }
+webpki = "0.14"
[features]
default = ["logging"]
@@ -28,7 +28,7 @@ env_logger = "0.4.2"
mio = "0.6"
docopt = "0.7"
rustc-serialize = "0.3"
-webpki-roots = "0.10"
+webpki-roots = "0.11"
regex = "0.2"
[[example]]
diff --git a/README.md b/README.md
index 8977b35a..b2fc417b 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,11 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
## Release history:
+* 0.9.0 (2017-06-16):
+ - Update dependencies.
+ - Add IO helper function (`complete_io`) to `rustls::Session`.
+ - Add blocking stream type -- `rustls::Stream` -- to ease use on top
+ of blocking sockets.
* 0.8.0 (2017-05-14):
- Add `dangerous_configuration` feature for unsafe features.
* 0.7.0 (2017-05-08):