diff --git a/CHANGELOG.md b/CHANGELOG.md index 684cb21..9ba283c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,22 @@ All notable changes to this project will be documented in this file. +## [1.7.4] - 2024-11-25 +[v1.7.3..v1.7.4](https://github.com/dustinblackman/cargo-run-bin/compare/v1.7.3..v1.7.4) + + +### 🐛 Bug Fixes + +- Handle plain strings in --sync-aliases ([#25](https://github.com/dustinblackman/cargo-run-bin/issues/25)) - ([3c4d168](https://github.com/dustinblackman/cargo-run-bin/commit/3c4d168f34bf19e2da1099b6351f00b0ced2383c)) + ## [1.7.3] - 2024-07-05 [v1.7.2..v1.7.3](https://github.com/dustinblackman/cargo-run-bin/compare/v1.7.2..v1.7.3) +### ⛰️ Features + +- Release v1.7.3 - ([c6bd9ec](https://github.com/dustinblackman/cargo-run-bin/commit/c6bd9ecf95fdc54c955090837b57d6fdca82b7d1)) + ### 🐛 Bug Fixes - Fallback to sh for non POSIX shells - ([7281bbb](https://github.com/dustinblackman/cargo-run-bin/commit/7281bbbf0a15b043d66e8f9f307485e210877df0)) diff --git a/Cargo.lock b/Cargo.lock index c8e8ee6..6eeae57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,7 +97,7 @@ checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad" [[package]] name = "cargo-run-bin" -version = "1.7.3" +version = "1.7.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index a12971a..ced6df5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-run-bin" -version = "1.7.3" +version = "1.7.4" authors = ["Dustin Blackman"] categories = ["command-line-utilities", "development-tools::cargo-plugins"] edition = "2021"