Skip to content

Releases: jhbabon/scout

v2.8.0: Add new argument `--preserve-order`

19 Sep 16:30
708879a
Compare
Choose a tag to compare
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

23 Jan 17:55
66ea030
Compare
Choose a tag to compare
v2.7.0: Add option to change size of pool candidates and other config…

v2.6.0: Update to edition 2021 and set rust-version to 1.58

23 Jan 13:38
Compare
Choose a tag to compare
- Bump `serde` from 1.0.130 to 1.0.133
- Bump `futures` from 0.3.17 to 0.3.19
- Bump `libc` from 0.2.103 to 0.2.113

v2.5.1: Update crossbeam yanked dependencies

28 Sep 20:22
Compare
Choose a tag to compare
- `crossbeam-deque` from `v0.8.0` to `v0.8.1`
- `crossbeam-epoch` from `v0.9.3` to `v0.9.5`
- `crossbeam-utils` from `v0.8.3` to `v0.8.5`

v2.5.0: Update root dependencies

28 Sep 20:10
Compare
Choose a tag to compare
Changed
- Update `futures` from `v0.3.13` to `v0.3.17`
- Update `async-std` from `v1.9.0` to `v1.10.0`
- Update `dirs` from `v3.0.1` to `v4.0.0`
- Update `env_logger` from `v0.8.3` to `v0.9.0`
- Update `libc` from `v0.2.89` to `v0.2.103`
- Update `pico-args` from `v0.4.0` to `v0.4.2`
- Update `rayon` from `v1.5.0` to `v1.5.1`
- Update `serde` from `v1.0.124` to `v1.0.130`
- Update `unicode-segmentation` from `v1.7.1` to `v1.8.0`

v2.4.1: Fix: Allow empty strings when using the search option

18 Mar 16:49
Compare
Choose a tag to compare
For example the options `--search=""` or `-s=""`.

v2.4.0: Reduce binary size

17 Mar 20:18
Compare
Choose a tag to compare
Changed
- Reduce binary size from 3.1M to 2.1M in macOS (aprox)
- Replace `clap` with `pico_args`

v2.3.0: Update root depedencies and fix linter warnings

13 Mar 17:20
Compare
Choose a tag to compare
Changed
- Update `async-std` from `v1.6.3` to `v1.9.0`
- Update `futures` from `v0.3.5` to `v0.3.13`
- Update `libc` from `v0.2.76` to `v0.2.88`
- Update `log` from `v0.4.11` to `v0.4.14`
- Update `rayon` from `v1.4.0` to `v1.5.0`
- Update `serde` from `v1.0.115` to `v1.0.124`
- Update `termion` from `v1.5.5` to `v1.5.6`
- Update `termios` from `v0.3.2` to `v0.3.3`
- Update `toml` from `v0.5.6` to `v0.5.8`
- Update `unicode-segmentation` from `v1.6.0` to `v1.7.1`
- Update `env_logger` from `v0.7.1` to `v0.8.3`

Removed
- `smol` dependency

v2.2.0: Remove input debouncing when searching

29 Aug 10:40
Compare
Choose a tag to compare
Changed
- Update dependencies
- Update `dirs` to `v3`
- Update `smol` to `0.4`

Removed
- Debounce behavior in the search engine. All characters will trigger a search.

v2.1.0: Update async-std to v1.6

31 May 10:22
Compare
Choose a tag to compare
Changed
- Update `async-std` to `v1.6`. This version uses `smol` as async
  backend.
- Use `smol::block_on` to clean up the screen after the program finishes.