From 276426461a9429032cd33a972ec5568b6d1994e3 Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Sun, 15 Jul 2018 12:13:10 +0100 Subject: [PATCH] 0.13.0 --- Cargo.toml | 12 ++++++------ README.md | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 890a2ef9..68785c46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustls" -version = "0.12.0" +version = "0.13.0" authors = ["Joseph Birr-Pixton "] license = "Apache-2.0/ISC/MIT" readme = "README.md" @@ -13,9 +13,9 @@ categories = ["network-programming", "cryptography"] untrusted = "0.6.2" base64 = "0.9" log = { version = "0.4.0", optional = true } -ring = { version = "0.13.0-alpha5", features = ["rsa_signing"] } -webpki = "0.18.0-alpha3" -sct = "0.3" +ring = { version = "0.13.2", features = ["rsa_signing"] } +webpki = "0.18.1" +sct = "0.4" [features] default = ["logging"] @@ -30,8 +30,8 @@ mio = "0.6" docopt = "1.0" serde = "1.0" serde_derive = "1.0" -webpki-roots = "0.14.0" -ct-logs = "0.3" +webpki-roots = "0.15.0" +ct-logs = "0.4" regex = "1.0" vecio = "0.1" diff --git a/README.md b/README.md index 7e759626..a28bdcd1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Rustls is currently in development and hence unstable. [Here's what I'm working ## Release history: -* Next release: +* 0.13.0 (2018-07-15): - Move TLS1.3 support from draft 22 to 23. - Add support for `SSLKEYLOGFILE`; not enabled by default. - Add support for basic usage in QUIC. @@ -22,6 +22,8 @@ Rustls is currently in development and hence unstable. [Here's what I'm working - Add support for vectored IO: `writev_tls` can now be used to optimise system call usage. - Support ECDSA signing for server and client authentication. + - Add type like `rustls::Stream` which owns its underlying TCP stream + and rustls session. * 0.12.0 (2018-01-06): - New API for learning negotiated cipher suite. - Move TLS1.3 support from draft 18 to 22.