Skip to content

Commit

Permalink
v0.33.3
Browse files Browse the repository at this point in the history
  • Loading branch information
0x676e67 committed Dec 16, 2024
1 parent 8c3881c commit 81e6c92
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ HTTP
```toml
[dependencies]
tokio = { version = "1", features = ["full"] }
rquest = "0.32.0"
rquest = "0.33.3"
```

```rust,no_run
Expand All @@ -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"] }
```

Expand Down Expand Up @@ -113,7 +113,7 @@ Preconfigured `TLS`/`HTTP2`
```toml
[dependencies]
tokio = { version = "1", features = ["full"] }
rquest = "0.32.0"
rquest = "0.33.3"
```

```rust
Expand Down

0 comments on commit 81e6c92

Please sign in to comment.