From 2ae0c8aa3dcf633d0a677aac857dd588240b1d38 Mon Sep 17 00:00:00 2001 From: Lukas Pustina Date: Fri, 7 Feb 2020 14:07:38 +0100 Subject: [PATCH] Bump to 0.1.0 --- Cargo.toml | 2 +- TODO.md | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08d99f2..18d80ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usereport-rs" -version = "0.0.1" +version = "0.1.0" authors = ["Lukas Pustina "] description = "Collect system information for the first 60 seconds of a performance analysis" repository = "https://github.com/lukaspustina/usereport-es.git" diff --git a/TODO.md b/TODO.md index fb21939..55b98ff 100644 --- a/TODO.md +++ b/TODO.md @@ -28,6 +28,13 @@ * [X] Correctly parse command args in ", e.g. sh -c "one | two" * [X] Add hbs helper which replaces \n with output format appropriate line break * [X] Preserve order of commands in output according to profile order +* [X] Re-work API + * [X] https://github.com/rust-lang/api-guidelines + * [X] https://rust-lang.github.io/api-guidelines/flexibility.html#functions-minimize-assumptions-about-parameters-by-using-generics-c-generic + * [X] https://deterministic.space/elegant-apis-in-rust.html + +## Before 1.0.0 + * [ ] Create linux and macos configuration * macOS * sw_vers @@ -36,10 +43,6 @@ * Linux * https://www.cyberciti.biz/tips/top-linux-monitoring-tools.html * http://www.brendangregg.com/USEmethod/use-linux.html -* [X] Re-work API - * [X] https://github.com/rust-lang/api-guidelines - * [X] https://rust-lang.github.io/api-guidelines/flexibility.html#functions-minimize-assumptions-about-parameters-by-using-generics-c-generic - * [X] https://deterministic.space/elegant-apis-in-rust.html * [ ] Activate deny missing docs and add docs * [ ] https://rust-lang.github.io/api-guidelines/documentation.html