diff --git a/CHANGELOG.md b/CHANGELOG.md index c3910b8..acd47ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Dates are given in YYYY-MM-DD format. ## v0.3 +### v0.3.5 (2021-08-16) +#### Other +- Updated `Cargo.toml` to pin [`clap`] to version 3 beta 2 - previously, version 3 beta 4 was considered compatible and +would be used if you ran `cargo install fif` instead of `cargo install --locked fif`, however, fif does *not* work with +this version of clap, which caused the build to fail. Also, clap 3 beta 4 depends on Rust >= 1.54, breaking our MSRV +- Fixed a few other `Cargo.toml` dependency versions that were causing issues when building on MSRV + ### v0.3.4 (2021-08-07) #### Features - Added `-I`/`--ignore-unknown-exts` flag for ignoring files with unknown extensions - for example, if fif doesn't know diff --git a/Cargo.lock b/Cargo.lock index 86091c0..255255d 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" @@ -183,7 +185,7 @@ checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193" [[package]] name = "fif" -version = "0.3.4" +version = "0.3.5" dependencies = [ "cached", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 5829f93..5cebc07 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.4" +version = "0.3.5" authors = ["Lynnesbian "] edition = "2018" license = "GPL-3.0-or-later"