summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2017-05-14 21:16:21 +0100
committerJoseph Birr-Pixton <jpixton@gmail.com>2017-05-14 21:20:29 +0100
commit339bd8513317f5c692d77c5c3ad068b207dd82e5 (patch)
treed2c034b4b8c36027520645a3dabb8c1346fffccf
parent9e3d7a497e71713c7d7d6027b634366637faad95 (diff)
-> 0.8.0v/0.8.0
-rw-r--r--Cargo.toml2
-rw-r--r--README.md18
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 <jpixton@gmail.com>"]
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.