update changelog

This commit is contained in:
Rob Ede 2021-02-28 01:11:21 +00:00
parent 09eac2572f
commit e316fa1d3b
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
3 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,7 @@
## Unreleased - 2021-xx-xx
### Changed
* Feature `cookies` is now optional and disabled by default. [#1981]
* `ws::hash_key` now returns array. [#2035]
### Removed
* re-export of `futures_channel::oneshot::Canceled` is removed from `error` mod. [#1994]
@ -10,6 +11,7 @@
[#1981]: https://github.com/actix/actix-web/pull/1981
[#1994]: https://github.com/actix/actix-web/pull/1994
[#2035]: https://github.com/actix/actix-web/pull/2035
## 3.0.0-beta.3 - 2021-02-10

View File

@ -104,7 +104,7 @@ package = "openssl"
features = ["vendored"]
[[example]]
name = "h2-ws"
name = "ws"
required-features = ["rustls"]
[[bench]]

View File

@ -1,5 +1,5 @@
//! Sets up a WebSocket server over TCP and TLS.
//! Sends a heartbeat message every 4 seconds and does not respond to any incoming frames.
//! Sends a heartbeat message every 4 seconds but does not respond to any incoming frames.
extern crate tls_rustls as rustls;