From 2898bd54631673da467638c1d640f1293bd94566 Mon Sep 17 00:00:00 2001 From: 0x676e67 Date: Thu, 23 Jan 2025 16:59:46 +0800 Subject: [PATCH] v2.0.0 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb5df9dc..2ae80c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/Cargo.toml b/Cargo.toml index b80e8c2e..b3e108ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/README.md b/README.md index b2d753ec..15ebc978 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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"] } ```