Skip to content

Commit 369e61a

Browse files
committed
Bump version to 0.5.0 and address some nits in #4
1 parent 6336837 commit 369e61a

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

Cargo.lock

Lines changed: 13 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "git-global"
4-
version = "0.4.1"
4+
version = "0.5.0"
55
authors = ["Eric Petersen <[email protected]>"]
66
description = "Keep track of all the git repositories on your machine."
77

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Use `git global <subcommand>` to:
2323
* `git global status`: show `git status -s` for all your repos with any changes
2424
* `git global unstaged`: show status of the working directory for repos with
2525
such changes
26-
- `git global ahead`: show list of repos where branches contains commits that
27-
not present on any of the remotes.
26+
* `git global ahead`: show repos where branches contain commits that are not
27+
present on any of the remotes
2828

2929
## Command-line flags
3030

@@ -95,6 +95,8 @@ The following are some ideas I've had about future subcommands and features:
9595

9696
## Release Notes
9797

98+
* 0.5.0 (2021-07-12)
99+
* Add the `ahead` subcommand - thanks, koalp!.
98100
* 0.4.1 (2021-06-03)
99101
* Fix crashes when a cached repo has been deleted.
100102
* 0.4.0 (2021-04-19)

src/repo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl Repo {
5757
branch.into_reference().peel_to_commit().unwrap()
5858
}
5959

60-
/// Walks trough revisions : returns all the ancestors Oids of a Commit
60+
/// Walks through revisions, returning all ancestor Oids of a Commit
6161
fn get_log(
6262
repo: &git2::Repository,
6363
commit: git2::Commit,

0 commit comments

Comments
 (0)