diff --git a/CHANGELOG.md b/CHANGELOG.md index 311a3384..088b8e3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog ========= +[1.30.1](https://github.com/casey/just/releases/tag/1.30.1) - 2024-07-06 +------------------------------------------------------------------------ + +### Fixed +- Fix function argument count mismatch error message ([#2231](https://github.com/casey/just/pull/2231) by [casey](https://github.com/casey)) + [1.30.0](https://github.com/casey/just/releases/tag/1.30.0) - 2024-07-06 ------------------------------------------------------------------------ diff --git a/Cargo.lock b/Cargo.lock index 16ee059d..5c368bdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -591,7 +591,7 @@ dependencies = [ [[package]] name = "just" -version = "1.30.0" +version = "1.30.1" dependencies = [ "ansi_term", "blake3", diff --git a/Cargo.toml b/Cargo.toml index 9f73f7e4..f25afb13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "1.30.0" +version = "1.30.1" authors = ["Casey Rodarmor "] autotests = false categories = ["command-line-utilities", "development-tools"]