github.com/abhinav/git-fu@v0.6.1-0.20171029234004-54218d68c11b/CHANGELOG.md (about)

     1  Releases
     2  ========
     3  
     4  v0.6.0 (2017-10-08)
     5  -------------------
     6  
     7  -   Renamed project to git-pr.
     8  
     9  
    10  v0.5.0 (2017-06-21)
    11  -------------------
    12  
    13  -   `git pr rebase` now supports an `--only-mine` flag to rebase only pull
    14      requests owned by the current user.
    15  -   Fixed a bug where `git pr rebase` would not delete temporary branches if
    16      the rebase failed.
    17  
    18  
    19  v0.4.3 (2017-03-08)
    20  -------------------
    21  
    22  -   Fixed a bug where `git pr rebase` would call `git push -f` without any
    23      arguments if there is nothing to rebase.
    24  
    25  
    26  v0.4.2 (2017-02-27)
    27  -------------------
    28  
    29  -   Recognize remotes in the form `ssh://git@github.com/*`.
    30  
    31  
    32  v0.4.1 (2017-02-27)
    33  -------------------
    34  
    35  -   Fix auto-released Darwin binaries.
    36  
    37  
    38  v0.4.0 (2017-02-22)
    39  -------------------
    40  
    41  -   The `--onto` parameter for `git pr rebase` is now optional. If not
    42      specified, the current branch is not rebased but all its dependents are
    43      rebased on its updated head.
    44  
    45  
    46  v0.3.0 (2017-02-22)
    47  -------------------
    48  
    49  -   `git pr rebase` now resets local branches when their remotes get updated
    50      but only if their heads matched the remotes at the time of rebase.
    51  
    52  
    53  v0.2.2 (2017-02-22)
    54  -------------------
    55  
    56  -   `git pr rebase`: Use a single `git push` command rather than multiple when
    57      updating remote refs. This should significantly speed things up.
    58  -   Fixed bug in `git pr rebase` that would cause the base branches for all PRs
    59      to be changed to the given base branch rather than just the first level.
    60  
    61  
    62  v0.2.1 (2017-02-21)
    63  -------------------
    64  
    65  -   Fixed bug in `git pr rebase` where commits from old rebased bases were
    66      leaking into higher level branches.
    67  -   `git pr rebase` now stages all rebase changes locally on temporary branches
    68      before pushing them to the remotes. This way, no actual changes are made
    69      until we verify locally that everything fits.
    70  
    71  
    72  v0.2.0 (2017-02-21)
    73  -------------------
    74  
    75  -   Added `rebase` subcommand to `git pr`.
    76  
    77  
    78  v0.1.0 (2017-02-20)
    79  -------------------
    80  
    81  -   Initial release.