diff --git a/CHANGELOG.md b/CHANGELOG.md index 86c1f12..4e53f29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + +## v0.3.7 - 2021-09-25 ### Added +- `-j`/`--jobs` flag for specifying the number of threads fif should use for scanning files - AIFF (Audio Interchange File Format, a PCM audio format like WAV) detection to [`infer`] backend - `--version` output now includes the (short) hash of the git commit fif was built from -- `-j`/`--jobs` flag for specifying the number of threads fif should use for scanning files ### Changed - fif will no longer use multithreading when scanning less than 32 files - the overhead of spawning threads isn't really worth it diff --git a/Cargo.lock b/Cargo.lock index 4b987e5..b53291b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "arrayvec" version = "0.5.2" @@ -173,7 +175,7 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "fif" -version = "0.3.6" +version = "0.3.7" dependencies = [ "bitflags", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index f3c5e87..271d1f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fif" description = "A command-line tool for detecting and optionally correcting files with incorrect extensions." -version = "0.3.6" +version = "0.3.7" authors = ["Lynnesbian "] edition = "2018" license = "GPL-3.0-or-later"