diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ac7609..d6e01a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### 🐛 Bug Fixes + +- *(proxy)* Fix `ws`/`wss` upgrade support for `http`/`https` proxy (#176) + +## [0.33.1] - 2024-12-16 + +### ⚙️ Miscellaneous Tasks + +- Show clear errors when TLS connector build fails (#173) +- Avoiding setup bloat when customizing your DNS resolver (#174) + +## [0.33.0] - 2024-12-15 + ### 🚀 Features - Add `Safari 18.1.1` impersonate (#157) diff --git a/Cargo.toml b/Cargo.toml index 34101d5a..f84a65fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rquest" -version = "0.33.1" +version = "0.33.3" description = "An ergonomic, all-in-one JA3/JA4/HTTP2 fingerprint HTTP/WebSocket client" keywords = ["http", "client", "websocket", "ja3", "ja4"] categories = ["web-programming::http-client"] diff --git a/README.md b/README.md index c0d2511a..2cd2f46c 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ HTTP ```toml [dependencies] tokio = { version = "1", features = ["full"] } -rquest = "0.32.0" +rquest = "0.33.3" ``` ```rust,no_run @@ -63,7 +63,7 @@ WebSocket ```toml [dependencies] tokio = { version = "1", features = ["full"] } -rquest = { version = "0.32.0", features = ["websocket"] } +rquest = { version = "0.33.3", features = ["websocket"] } futures-util = { version = "0.3.0", default-features = false, features = ["std"] } ``` @@ -113,7 +113,7 @@ Preconfigured `TLS`/`HTTP2` ```toml [dependencies] tokio = { version = "1", features = ["full"] } -rquest = "0.32.0" +rquest = "0.33.3" ``` ```rust