From 339bd8513317f5c692d77c5c3ad068b207dd82e5 Mon Sep 17 00:00:00 2001 From: Joseph Birr-Pixton Date: Sun, 14 May 2017 21:16:21 +0100 Subject: [PATCH] -> 0.8.0 --- Cargo.toml | 2 +- README.md | 18 ++++++++++-------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0078aec2..5919aa2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustls" -version = "0.7.0" +version = "0.8.0" authors = ["Joseph Birr-Pixton "] license = "Apache-2.0/ISC/MIT" readme = "README.md" diff --git a/README.md b/README.md index f2af13db..8977b35a 100644 --- a/README.md +++ b/README.md @@ -13,30 +13,32 @@ Rustls is currently in development and hence unstable. [Here's what I'm working ## Release history: -* 0.7.0: +* 0.8.0 (2017-05-14): + - Add `dangerous_configuration` feature for unsafe features. +* 0.7.0 (2017-05-08): - Update dependencies. -* 0.6.0: +* 0.6.0 (2017-05-06): - Update dependencies. - Expose ring's new support for PKCS#8-format private keys. - New API for applying limitation to internal buffer sizes. -* 0.5.8: +* 0.5.8 (2017-03-16): - Fix build on later rustc. -* 0.5.7: +* 0.5.7 (2017-02-27): - No changes from 0.5.6; republished with nightly cargo for category support. -* 0.5.6: +* 0.5.6 (2017-02-19): - RFC7627 extended master secret support - Assorted documentation improvements -* 0.5.5: +* 0.5.5 (2017-02-03): - Crate categories. - Protocol errors now permanent for given session. - Exposed `ResolvesServerCert` trait for customising certification selection. - Exposed `SignatureScheme` enum. -* 0.5.4: +* 0.5.4 (2017-01-26): - First release with TLS1.3-draft-18 support. - More performance improvements (now ~15Gbps per core). - New API to learn version of negotiated connection. -* 0.5.0: +* 0.5.0 (2016-09-27): - Tickets. - Coverage testing. - Benchmarking.