summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2020-11-22 13:22:18 +0000
committerJoseph Birr-Pixton <jpixton@gmail.com>2020-11-22 13:22:18 +0000
commit47d309233f2d21ccf058d35c58d684e5e4c9c643 (patch)
treebf9d868be76b0a86d929eccc096c510f71f57d57
parentcd112e4ee999dcbbb41b65b7031f1520abdf192e (diff)
Prepare for 0.19 releasev/0.19.0
-rw-r--r--README.md5
-rw-r--r--rustls-mio/Cargo.toml4
-rw-r--r--rustls/Cargo.toml4
3 files changed, 7 insertions, 6 deletions
diff --git a/README.md b/README.md
index befcbfab..76d5a506 100644
--- a/README.md
+++ b/README.md
@@ -21,12 +21,13 @@ If you'd like to help out, please see [CONTRIBUTING.md](CONTRIBUTING.md).
## Release history:
* Next release:
+ - Planned: removal of unused signature verification schemes at link-time.
+ - Planned: removal of PEM parsing to a separate crate.
+* 0.19.0 (2020-11-22):
- Ensured that `get_peer_certificates` is both better documented, and works
uniformly for both full-handshake and resumed sessions.
- Fix bug: fully qualified hostnames should have had their trailing dot
stripped when quoted in the SNI extension.
- - Planned: removal of unused signature verification schemes at link-time.
- - Planned: removal of PEM parsing to a separate crate.
* 0.18.1 (2020-08-16):
- Fix DoS vulnerability in TLS1.3 "Middlebox Compatibility Mode" CCS handling.
This is thought to be quite minor -- see
diff --git a/rustls-mio/Cargo.toml b/rustls-mio/Cargo.toml
index d94a26fb..4b39e8c1 100644
--- a/rustls-mio/Cargo.toml
+++ b/rustls-mio/Cargo.toml
@@ -20,14 +20,14 @@ sct = "0.6"
webpki = "0.21.0"
[dev-dependencies]
-ct-logs = "0.7"
+ct-logs = "0.8"
docopt = "~1.1"
env_logger = "0.8.2"
mio = { version = "0.7", features = ["os-poll", "tcp"] }
regex = "1.0"
serde = "1.0"
serde_derive = "1.0"
-webpki-roots = "0.20"
+webpki-roots = "0.21"
ring = "0.16.0"
[[example]]
diff --git a/rustls/Cargo.toml b/rustls/Cargo.toml
index 4a4a34cc..6ed25c02 100644
--- a/rustls/Cargo.toml
+++ b/rustls/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rustls"
-version = "0.18.1"
+version = "0.19.0"
edition = "2018"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
@@ -27,7 +27,7 @@ quic = []
[dev-dependencies]
env_logger = "0.8.2"
log = "0.4.4"
-webpki-roots = "0.20"
+webpki-roots = "0.21"
criterion = "0.3.0"
[[example]]