Skip to content

Commit

Permalink
0.4.8 added output when cloning repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Dahan committed Jun 5, 2017
1 parent 141ee3f commit a282fd4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zr"
version = "0.4.7"
version = "0.4.8"
authors = ["Jonathan Dahan <[email protected]>"]

[dependencies]
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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 \ ... }

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# z :rat:

zr 0.4.7
zr 0.4.8
Jonathan Dahan <[email protected]>
z:rat: - zsh plugin manager

Expand Down
1 change: 1 addition & 0 deletions src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ impl Plugin {
}

let url = format!("https://github.com/{}/{}", author, name);
println!("cloning {}", url);
git2::Repository::clone(&url, &path).unwrap();
}
Ok(())
Expand Down

0 comments on commit a282fd4

Please sign in to comment.