diff --git a/CHANGELOG.md b/CHANGELOG.md index f1d3ad9..573a9ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ Changelog ========= +[0.10.0](https://github.com/casey/just/releases/tag/0.10.0) - 2021-8-2 +---------------------------------------------------------------------- + +### Changed +- Warn if `.env` file is loaded in `dotenv-load` isn't explicitly set (#925) + +### Added +- Add `--changelog` subcommand (#932) +- Support `.justfile` as an alternative to `justfile` (#931) + +### Misc +- Use cargo-limit for all recipes (#928) +- Fix colors (#927) +- Use ColorDisplay trait to print objects to the terminal (#926) +- Deduplicate recipe parsing (#923) +- Move subcommand functions into Subcommand (#918) +- Check GitHub Actions workflow with actionlint (#921) +- Add loader and refactor errors (#917) +- Rename: Module → Ast (#915) + [0.9.9](https://github.com/casey/just/releases/tag/0.9.9) - 2021-7-22 --------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index f455ae2..ad1ec19 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 = "aho-corasick" version = "0.7.18" @@ -46,9 +48,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "camino" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4648c6d00a709aa069a236adcaae4f605a6241c72bf5bee79331a4b625921a9" +checksum = "52d74260d9bf6944e2208aa46841b4b8f0d7ffc0849a06837b2f510337f86b2b" [[package]] name = "cc" @@ -79,9 +81,9 @@ dependencies = [ [[package]] name = "cradle" -version = "0.0.13" +version = "0.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2352f0ca05779da0791a0ea204cc7bfddf83ee6e6277c919d8c0a5801d27f0e4" +checksum = "d90b228d90bc41886e0a04820dec38dcaf8cb347b5838827219885bd2151edc1" dependencies = [ "rustversion", ] @@ -203,7 +205,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "just" -version = "0.9.9" +version = "0.10.0" dependencies = [ "ansi_term 0.12.1", "atty", @@ -338,9 +340,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.27" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" +checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612" dependencies = [ "unicode-xid", ] @@ -618,11 +620,12 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" [[package]] name = "which" -version = "4.1.0" +version = "4.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe" +checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9" dependencies = [ "either", + "lazy_static", "libc", ] diff --git a/Cargo.toml b/Cargo.toml index 7a957e9..a0c1e65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.9.9" +version = "0.10.0" description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] license = "CC0-1.0" @@ -45,7 +45,7 @@ version = "0.21.0" features = ["derive"] [dev-dependencies] -cradle = "0.0.13" +cradle = "0.0.16" executable-path = "1.0.0" pretty_assertions = "0.7.0" regex = "1.5.4" diff --git a/man/just.1 b/man/just.1 index bcc6658..f50fefd 100644 --- a/man/just.1 +++ b/man/just.1 @@ -1,9 +1,9 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.15. -.TH JUST "1" "July 2021" "just 0.9.9" "Just Manual" +.TH JUST "1" "July 2021" "just 0.10.0" "Just Manual" .SH NAME just \- save and run commands .SH DESCRIPTION -just 0.9.9 +just 0.10.0 \- Please see https://github.com/casey/just for more information. .SS "USAGE:" .IP diff --git a/src/config.rs b/src/config.rs index a53ea7d..e51f63f 100644 --- a/src/config.rs +++ b/src/config.rs @@ -566,7 +566,7 @@ mod tests { // have proper tests for all the flags, but this will do for now. #[test] fn help() { - const EXPECTED_HELP: &str = "just 0.9.9 + const EXPECTED_HELP: &str = "just 0.10.0 Casey Rodarmor 🤖 Just a command runner \ - https://github.com/casey/just