Bump the version and update the changelog

pull/266/head v0.17.0
Daniel Abramov 2 years ago
parent d079090031
commit 653296a1d4
  1. 6
      CHANGELOG.md
  2. 4
      Cargo.toml

@ -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`).

@ -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"]

Loading…
Cancel
Save