diff --git a/CHANGELOG.md b/CHANGELOG.md index 88bb780c..6642c928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# 3.0.0 + * Replace RequestBuilder Deref with explicit wrappers (#944) * Remove dependency on `url` crate (#943) * Feature `Config::save_redirect_history` (#939) diff --git a/Cargo.lock b/Cargo.lock index 62cafa31..757ce3f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1404,7 +1404,7 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "3.0.0-rc5" +version = "3.0.0" dependencies = [ "assert_no_alloc", "auto-args", diff --git a/Cargo.toml b/Cargo.toml index cf99b651..06bfc00a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ureq" -version = "3.0.0-rc5" +version = "3.0.0" authors = ["Martin Algesten ", "Jacob Hoffman-Andrews "] description = "Simple, safe HTTP client" license = "MIT OR Apache-2.0"