Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Cunha committed Jul 18, 2013
1 parent 0b1e8a0 commit 93a4285
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
git-whistles (0.7.4)
git-whistles (0.7.5)
pivotal-tracker (~> 0.5.6)
term-ansicolor

Expand Down
4 changes: 4 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# 2013-07-18: 0.7.5
* [FEATURE] git pivotal-branch <story-id> Creates a branch name suggestion from the specified Pivotal Tracker story ID. [dncrht]
* [FEATURE] git outstanding-features -o allows to view all features to be deployed in one single line

# 2013-06-18: 0.7.4
* [FIX] Adjusted git-pull-request to play with the new GitHub pull request user interface
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Use it with:
- `git ff-all-branches [-f] [-p] [-v]`. Fast-forward all local tracking branches to their remote counterpart (where possible). Very useful on big projects.
- `git stash-and-checkout [branch]` As the name implies: stash and checkout another branch.
- `git pull-request [--from your-branch] [--to target-branch]` Open your browser at a Github pull-request page for the specified branch (defaults to the current `head`). If you're using Pivotal Tracker and your branch has a story number in its name, populates your pull request with story details.
- `git outstanding-features [-f from-branch] [-t to-branch]` List the pull requests merged in `[to-branch]` but not in `[from-branch]`. Useful to prepare a list of stuff you're going to deploy. Defaults to listing what's on `origin/master` but not on `origin/production`. [[PedroCunha](https://github.com/PedroCunha)]
- `git chop [branch]` Delete the local and origin copy of a branch. Useful to close feature branches once a feature is completed.
- `git outstanding-features [-f from-branch] [-t to-branch] [--oneline]` List the pull requests merged in `[to-branch]` but not in `[from-branch]`. Useful to prepare a list of stuff you're going to deploy. Defaults to listing what's on `origin/master` but not on `origin/production`. By default lists one feature per line, if `--oneline` or `-o` is specified features will be separated by spaces instead. [[PedroCunha](https://github.com/PedroCunha)]
- `git chop [branch]` Delete the local and origin copy of a branch. Useful to close feature branches once a feature is completed.
- `git list-branches [-l] [-r] [-i integration-branch]` Colourful listing of all local or origin branches, and their distance to an integration branch (`master` by default).
- `git merge-po <ancestor> <left> <right>` Merge engine for GetText PO files.
- `git select <story-id>` Checkout a local branch with the matching number. If not found, lists remote branches
Expand Down
2 changes: 1 addition & 1 deletion lib/git-whistles/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

module Git
module Whistles
VERSION = "0.7.4"
VERSION = "0.7.5"
GEMDIR = Pathname.new(__FILE__).parent.parent.parent
end
end

0 comments on commit 93a4285

Please sign in to comment.