diff --git a/Cargo.toml b/Cargo.toml index 56ea40e..67f18a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zr" -version = "0.4.7" +version = "0.4.8" authors = ["Jonathan Dahan "] [dependencies] diff --git a/changelog.md b/changelog.md index 9b980ad..643345b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,7 @@ # 0.5.0 unreleased -Deprecated `add` and `reset`, as `load` is fast enough, and you can regen when mtime is different via ++ Added output when cloning repositories +- Deprecated `add` and `reset`, as `load` is fast enough, and you can regen when mtime is different via [[ ~/.zshrc -nt ~/.zr/init.zsh ]] && { zr load \ ... } diff --git a/readme.md b/readme.md index b0b45b7..649d072 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # z :rat: - zr 0.4.7 + zr 0.4.8 Jonathan Dahan z:rat: - zsh plugin manager diff --git a/src/plugin.rs b/src/plugin.rs index 2cae959..ffa58af 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -25,6 +25,7 @@ impl Plugin { } let url = format!("https://github.com/{}/{}", author, name); + println!("cloning {}", url); git2::Repository::clone(&url, &path).unwrap(); } Ok(())