Skip to content
Permalink
master

Commits on Oct 12, 2021

  1. Refactor: Rename Options to Config

    niklasmohrin authored and sharkdp committed Oct 12, 2021
  2. Refactor: extract some methods out of run and reorder main.rs

    Now, the top method is `main`, then comes `run`, then the methods used
    in `run` follow. Generally, a method is always declared somewhere after
    its first use. This way, you can read the file from top to bottom with
    a decreasing level of abstraction (you start with very high-level
    processes like setting the current dir and logic for which ls command to
    use only comes furher down).
    niklasmohrin authored and sharkdp committed Oct 12, 2021
  3. Refactor: merge_exit_codes now takes an `impl IntoIterator<Item = E…

    …xitCode>`
    
    This way, callers don't need to collect into a slice / vec.
    niklasmohrin authored and sharkdp committed Oct 12, 2021
  4. Bump MSRV to 1.53

    niklasmohrin authored and sharkdp committed Oct 12, 2021
  5. Remove an unnecessary reference. (#864)

    This was caught by Code Quality github action with the message:
    
    > this expression borrows a reference (`&walk::DirEntry`) that is immediately dereferenced by the compiler
    tmccombs committed Oct 12, 2021

Commits on Oct 8, 2021

  1. Bump libc from 0.2.101 to 0.2.103

    Bumps [libc](https://github.com/rust-lang/libc) from 0.2.101 to 0.2.103.
    - [Release notes](https://github.com/rust-lang/libc/releases)
    - [Commits](rust-lang/libc@0.2.101...0.2.103)
    
    ---
    updated-dependencies:
    - dependency-name: libc
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot authored and sharkdp committed Oct 8, 2021
  2. Bump anyhow from 1.0.43 to 1.0.44

    Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.43 to 1.0.44.
    - [Release notes](https://github.com/dtolnay/anyhow/releases)
    - [Commits](dtolnay/anyhow@1.0.43...1.0.44)
    
    ---
    updated-dependencies:
    - dependency-name: anyhow
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot authored and sharkdp committed Oct 8, 2021

Commits on Oct 7, 2021

  1. Merge pull request #857 from exploide/short-help-completion

    Added missing help messages to various options
    tavianator committed Oct 7, 2021

Commits on Oct 6, 2021

  1. Fix typos

    friederbluemle committed Oct 6, 2021

Commits on Oct 3, 2021

  1. added missing help messages to various options

    despite they have hidden_short_help set to true, a short help message is still useful for auto-generated completions
    exploide committed Oct 3, 2021

Commits on Sep 2, 2021

  1. Merge pull request #846 from tmccombs/dep-update

    Update dependencies
    tavianator committed Sep 2, 2021

Commits on Sep 1, 2021

  1. Update dependencies

    in Cargo.lock and Cargo.toml
    tmccombs committed Sep 1, 2021
  2. Merge pull request #817 from will459/add_no_ignore_parent

    Add --no-ignore-parent flag
    tavianator committed Sep 1, 2021

Commits on Aug 31, 2021

Commits on Aug 22, 2021

  1. Remove --lib option

    sharkdp committed Aug 22, 2021

Commits on Aug 15, 2021

  1. Add better documentation of vcs-ignore files.

    Explicitly list which files are used for gitignore.
    
    Fixes #354
    tmccombs authored and sharkdp committed Aug 15, 2021

Commits on Aug 14, 2021

  1. Add -q/--quiet/--has-match flag (#813)

    Instead of printing to stdout, the program will return 1 as the exit
    code if there are no matches and 0 otherwise.
    Asha20 committed Aug 14, 2021
  2. fix whitespace

    a1346054 authored and sharkdp committed Aug 14, 2021
  3. fix spelling

    a1346054 authored and sharkdp committed Aug 14, 2021

Commits on Aug 10, 2021

  1. Add documentation and examples of ** in glob mode

    And how it should be used with the `--full-path` option.
    
    Fixes #764.
    tmccombs authored and sharkdp committed Aug 10, 2021
  2. Mention make as a build dependency.

    Fixes #743
    tmccombs authored and sharkdp committed Aug 10, 2021
  3. Support --list-details on more platforms

    Implement `--list-details` by using short options for `ls` to support more platforms (like BusyBox)
    
    closes #783
    tsoutsman committed Aug 10, 2021
  4. Refactor file types check to be on impl of FileTypes

    Relates to #382
    tmccombs authored and sharkdp committed Aug 10, 2021

Commits on Aug 9, 2021

  1. Drop the 18.04 runs entirely

    peternewman authored and sharkdp committed Aug 9, 2021
Older