Bump the version and update the changelog

This commit is contained in:
Daniel Abramov 2022-02-14 14:43:14 +01:00
parent d079090031
commit 653296a1d4
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# 0.17.0
- Update of dependencies (primarily `sha1`).
- Add support of the fragmented messages (allow the user to send the frames without composing the full message).
- Overhaul of the client's request generation process. Now the users are able to pass the constructed `http::Request` "as is" to `tungstenite-rs`, letting the library to check the correctness of the request and specifying their own headers (including its own key if necessary). No changes for those ones who used the client in a normal way by connecting using a URL/URI (most common use-case).
# 0.16.0
- Update of dependencies (primarily `rustls`, `webpki-roots`, `rustls-native-certs`).

View File

@ -7,9 +7,9 @@ authors = ["Alexey Galakhov", "Daniel Abramov"]
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/snapview/tungstenite-rs"
documentation = "https://docs.rs/tungstenite/0.16.0"
documentation = "https://docs.rs/tungstenite/0.17.0"
repository = "https://github.com/snapview/tungstenite-rs"
version = "0.16.0"
version = "0.17.0"
edition = "2018"
include = ["benches/**/*", "src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]