diff --git a/CHANGELOG.md b/CHANGELOG.md index 021133e0b..a61d0f14f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ #### 🚀 Updates +- The file loaded for `proto outdated` is now output in the terminal. - WASM API - Added `get_env_var` and `set_env_var` host functions. - Added `host_env!` macro. diff --git a/crates/cli/src/commands/outdated.rs b/crates/cli/src/commands/outdated.rs index 3e3ff7d53..bb7cd1018 100644 --- a/crates/cli/src/commands/outdated.rs +++ b/crates/cli/src/commands/outdated.rs @@ -44,6 +44,7 @@ pub async fn outdated(args: ArgsRef) { if !args.json { info!("Checking for newer versions..."); + info!("Loading {}", color::path(&tools_config.path)); } let mut items = HashMap::new();