Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x676e67 committed Jan 23, 2025
1 parent adddada commit 2898bd5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.

## [unreleased]

### 🧪 Testing

- *(badssl)* Update cipher list

### ⚙️ Miscellaneous Tasks

- Move macros to lib mod (#354)
- *(tls)* Move `tls/ext/cert` to `tls/cert` (#355)
- *(tls)* Load and wrap the certificate into `RootCertStore` (#356)

## [2.0.0-rc.1] - 2025-01-22

### 🚀 Features

- Remove internal headers cache (#318)
Expand Down Expand Up @@ -61,6 +73,7 @@ All notable changes to this project will be documented in this file.
### Workflows

- *(linux)* Remove unused deps install
- Add `rc` version check

## [1.5.2] - 2025-01-12

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 = "2.0.0-rc.1"
version = "2.0.0"
description = "An ergonomic, all-in-one TLS, JA3/JA4, and HTTP2 fingerprint HTTP Client for spoof any browser"
keywords = ["http", "client", "websocket", "ja3", "ja4"]
categories = ["web-programming::http-client"]
Expand Down
4 changes: 2 additions & 2 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 = "2.0.0-rc.1"
rquest = "2.0.0"
```

```rust,no_run
Expand All @@ -63,7 +63,7 @@ WebSocket
```toml
[dependencies]
tokio = { version = "1", features = ["full"] }
rquest = { version = "2.0.0-rc.1", features = ["websocket"] }
rquest = { version = "2.0.0", features = ["websocket"] }
futures-util = { version = "0.3.0", default-features = false, features = ["std"] }
```

Expand Down

0 comments on commit 2898bd5

Please sign in to comment.