From 3bd1d5d1b36ab522b2e68b04792b9d436bc3a9df Mon Sep 17 00:00:00 2001 From: Matthew Ransley <69316482+epicmatthew23@users.noreply.github.com> Date: Tue, 4 Jul 2023 20:12:52 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f95e7e2..f34f303 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ reqwest-impersonate = { git = "https://github.com/epicmatthew23/reqwest-imperson use reqwest_impersonate::browser::ChromeVersion; fn main() { - // Build a client to mimic Chrome 104 + // Build a client to mimic Chrome 114 let client = reqwest_impersonate::blocking::Client::builder() - .chrome_builder(ChromeVersion::V104) + .chrome_builder(ChromeVersion::V114) .build() .unwrap();