From bbfd125025365113e51557544547cd1b78ec608f Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Wed, 6 May 2020 13:57:01 +0200 Subject: [PATCH] 1.0.0 --- Cargo.toml | 2 +- README.md | 42 +++++++++++++++++++++++++----------------- 2 files changed, 26 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f04a90c..e6f41c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ureq" -version = "0.12.1" +version = "1.0.0" authors = ["Martin Algesten "] description = "Minimal HTTP request library" license = "MIT/Apache-2.0" diff --git a/README.md b/README.md index 1f969b7..7f6ce77 100644 --- a/README.md +++ b/README.md @@ -6,23 +6,6 @@ > Minimal request library in rust. -## ureq's future - -I asked for feedback on [ureq's future -direction](https://www.reddit.com/r/rust/comments/eu6qg8/future_of_ureq_http_client_library/) -and came to the conclusion that there's enough interest in a simple -blocking http client to keep it going. Another motivation is that I -use it extensively for my own work, to talk to S3. - -I'll keep maintaining ureq. I will try to keep dependencies somewhat -fresh and try to address bad bugs. I will however not personally -implement new features in ureq, but I do welcome PR with open arms. - -The code base is extremely simple, one might even call naive. It's a -good project to hack on as first learning experience in Rust. I will -uphold some base line of code hygiene, but won't block a PR due to -something being a bit inelegant. - ## Usage ```rust @@ -47,6 +30,31 @@ fn main() { } ``` +## About 1.0.0 + +This crate is now 1.x.x. I signifies there will be no more breaking +API changes (for better or worse). I personally use this code in +production system reading data from AWS. Whether the quality is good +enough for other use cases is a "YMMV". I know the Agent related code +is rather undertested and probably has issues. + +## ureq's future + +I asked for feedback on [ureq's future +direction](https://www.reddit.com/r/rust/comments/eu6qg8/future_of_ureq_http_client_library/) +and came to the conclusion that there's enough interest in a simple +blocking http client to keep it going. Another motivation is that I +use it extensively for my own work, to talk to S3. + +I'll keep maintaining ureq. I will try to keep dependencies somewhat +fresh and try to address bad bugs. I will however not personally +implement new features in ureq, but I do welcome PR with open arms. + +The code base is extremely simple, one might even call naive. It's a +good project to hack on as first learning experience in Rust. I will +uphold some base line of code hygiene, but won't block a PR due to +something being a bit inelegant. + ## Features To enable a minimal dependency tree, some features are off by default.