From c3b2a26c46bc4db7d2d9fbab80b4f8ad1ad07ff8 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 16 Aug 2019 11:47:05 -0700 Subject: [PATCH] Prepare master for 0.10 breaking changes --- Cargo.toml | 4 +++- README.md | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bee7fde..e8d9fe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reqwest" -version = "0.9.19" # remember to update html_root_url +version = "0.10.0-alpha.0" # remember to update html_root_url description = "higher level HTTP client library" keywords = ["http", "request", "client"] repository = "https://github.com/seanmonstar/reqwest" @@ -10,6 +10,8 @@ readme = "README.md" license = "MIT/Apache-2.0" categories = ["web-programming::http-client"] +publish = false + [package.metadata.docs.rs] all-features = true diff --git a/README.md b/README.md index 6c1e36a..6d4c333 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ An ergonomic, batteries-included HTTP Client for Rust. - Cookie Store - [Changelog](CHANGELOG.md) +> *NOTE*: reqwest's [master](https://github.com/seanmonstar/reqwest) branch is currently +preparing breaking changes, for most recently released code, look to the +[0.9.x](https://github.com/seanmonstar/reqwest/tree/0.9.x) branch. + ## Example ```rust,no_run