summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2017-02-03 19:41:53 +0000
committerJoseph Birr-Pixton <jpixton@gmail.com>2017-02-03 19:41:53 +0000
commit8b93a148a900809f28141665552070a2c9ede266 (patch)
treef8299d18507e56952d4b0b502eac497aeaf8307d
parent456dbd13a6afe0adc5be4cb8e35677568749fd3e (diff)
0.5.5v/0.5.5
-rw-r--r--Cargo.toml3
-rw-r--r--README.md6
2 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index cf15451d..c15bcdbe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,12 +1,13 @@
[package]
name = "rustls"
-version = "0.5.4"
+version = "0.5.5"
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
license = "Apache-2.0/ISC/MIT"
readme = "README.md"
description = "Rustls is a modern TLS library written in Rust."
homepage = "https://github.com/ctz/rustls"
repository = "https://github.com/ctz/rustls"
+catgories = ["network-programming", "cryptography"]
[dependencies]
untrusted = "0.3.1"
diff --git a/README.md b/README.md
index 96467517..79b9780f 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,12 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
## Release history:
+* 0.5.5:
+ - Crate categories.
+ - Protocol errors now permanent for given session.
+ - Exposed `ResolvesServerCert` trait for customising certification
+ selection.
+ - Exposed `SignatureScheme` enum.
* 0.5.4:
- First release with TLS1.3-draft-18 support.
- More performance improvements (now ~15Gbps per core).