This commit is contained in:
Joseph Birr-Pixton 2018-07-15 12:13:10 +01:00
parent c6af00a225
commit 276426461a
2 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rustls"
version = "0.12.0"
version = "0.13.0"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
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"

View File

@ -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.