diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d7849e..958bef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v2.8.0] 2023-09-19 +### Added +- New argument, `-p`, `--preserve-order`. This option keeps the original order of + the items in the candidates list, without ranking them by match score. + ## [v2.7.0] 2023-01-23 ### Added - New argument, `--pool`, and config option `advanced.pool_size` (or `advanced.pool`). @@ -192,7 +197,8 @@ Update crossbeam yanked dependencies: - You can move through the list of choices. - It is UTF-8 aware. -[Unreleased]: https://github.com/jhbabon/scout/compare/v2.7.0...HEAD +[Unreleased]: https://github.com/jhbabon/scout/compare/v2.8.0...HEAD +[v2.8.0]: https://github.com/jhbabon/scout/compare/v2.7.0...v2.8.0 [v2.7.0]: https://github.com/jhbabon/scout/compare/v2.6.0...v2.7.0 [v2.6.0]: https://github.com/jhbabon/scout/compare/v2.5.1...v2.6.0 [v2.5.1]: https://github.com/jhbabon/scout/compare/v2.5.0...v2.5.1 diff --git a/Cargo.lock b/Cargo.lock index b3749f3..3ec0360 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -736,7 +736,7 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" [[package]] name = "scout" -version = "2.7.0" +version = "2.8.0" dependencies = [ "ansi_term", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 153d0ff..10d4919 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scout" -version = "2.7.0" +version = "2.8.0" authors = ["Juan Hernández "] description = "Friendly fuzzy finder for the command line" homepage = "https://github.com/jhbabon/scout"