diff --git a/CHANGELOG.md b/CHANGELOG.md index aad5c63..53502b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [v1.0.1] 2017-07-13 ### Added - [trust](https://github.com/japaric/trust/) template to run `scout` against different architectures and to generate release packages with @@ -13,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Fix compilation in `musl` environments. -## [1.0.0] 2017-07-04 +## [v1.0.0] 2017-07-04 ### Added - Tests for the UI module. - Custom Error type to control error cases. @@ -29,7 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Removed - No more `unwrap()` calls. -## [0.10.0] - 2017-07-01 +## [v0.10.0] - 2017-07-01 ### Added - `rustfmt` config file. - Instructions of how to use `rustfmt` in the project. @@ -41,15 +43,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Reformatted `rust` source code with `rustfmt`. - Refactored the code to remove `clippy` offenses. -## [0.9.2] - 2017-06-29 +## [v0.9.2] - 2017-06-29 ### Fixed - Fix the movement of the current choice selected through the choices list -## [0.9.1] - 2017-06-14 +## [v0.9.1] - 2017-06-14 ### Fixed - Add missing changes in Cargo.lock file -## [0.9.0] - 2017-06-14 +## [v0.9.0] - 2017-06-14 ### Added - Info about how to install scout crate. - Info about tests @@ -58,7 +60,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Changed - Do the fuzzy search with different threads in parallel. -## [0.8.0] - 2017-05-14 +## [v0.8.0] - 2017-05-14 ### Added - You can pipe in a list of items to filter. - The program will print out the selection. @@ -68,10 +70,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - You can move through the list of choices. - It is UTF-8 aware. -[Unreleased]: https://github.com/jhbabon/scout/compare/v1.0.0...HEAD -[1.0.0]: https://github.com/jhbabon/scout/compare/vv0.10.0...v1.0.0 -[0.10.0]: https://github.com/jhbabon/scout/compare/v0.9.2...v0.10.0 -[0.9.2]: https://github.com/jhbabon/scout/compare/v0.9.1...v0.9.2 -[0.9.1]: https://github.com/jhbabon/scout/compare/v0.9.0...v0.9.1 -[0.9.0]: https://github.com/jhbabon/scout/compare/v0.8.0...v0.9.0 -[0.8.0]: https://github.com/jhbabon/scout/tree/v0.8.0 +[Unreleased]: https://github.com/jhbabon/scout/compare/v1.0.1...HEAD +[v1.0.1]: https://github.com/jhbabon/scout/compare/v1.0.0...v1.0.1 +[v1.0.0]: https://github.com/jhbabon/scout/compare/v0.10.0...v1.0.0 +[v0.10.0]: https://github.com/jhbabon/scout/compare/v0.9.2...v0.10.0 +[v0.9.2]: https://github.com/jhbabon/scout/compare/v0.9.1...v0.9.2 +[v0.9.1]: https://github.com/jhbabon/scout/compare/v0.9.0...v0.9.1 +[v0.9.0]: https://github.com/jhbabon/scout/compare/v0.8.0...v0.9.0 +[v0.8.0]: https://github.com/jhbabon/scout/tree/v0.8.0 diff --git a/Cargo.lock b/Cargo.lock index ce84761..f65210a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "scout" -version = "1.0.0" +version = "1.0.1" dependencies = [ "docopt 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 87423bb..4e8fb6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scout" -version = "1.0.0" +version = "1.0.1" authors = ["Juan Hernández "] description = "Small fuzzy finder for the command line" homepage = "https://github.com/jhbabon/scout"