diff --git a/CHANGELOG.md b/CHANGELOG.md index fdbc344..6cb0003 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`). diff --git a/Cargo.toml b/Cargo.toml index fa50d25..76c3b62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"]