Skip to content

Commit e8d815a

Browse files
committedFeb 19, 2017
0.5.6
1 parent f55df1f commit e8d815a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustls"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
55
license = "Apache-2.0/ISC/MIT"
66
readme = "README.md"

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Rustls is currently in development and hence unstable. [Here's what I'm working
1313

1414
## Release history:
1515

16+
* 0.5.6:
17+
- RFC7627 extended master secret support
18+
- Assorted documentation improvements
1619
* 0.5.5:
1720
- Crate categories.
1821
- Protocol errors now permanent for given session.
@@ -55,6 +58,7 @@ obsolete cryptography.
5558
* TLS1.3 resumption via tickets.
5659
* Client authentication by clients.
5760
* Client authentication by servers.
61+
* Extended master secret support (RFC7627).
5862

5963
## Possible future features
6064

‎src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
//! * TLS1.3 resumption via tickets.
2020
//! * Client authentication by clients.
2121
//! * Client authentication by servers.
22+
//! * Extended master secret support (RFC7627).
2223
//!
2324
//! ## Possible future features
2425
//!

0 commit comments

Comments
 (0)
Please sign in to comment.