Skip to content

Commit

Permalink
Version 0.004002
Browse files Browse the repository at this point in the history
  • Loading branch information
torbiak committed Oct 17, 2023
1 parent 7a034cd commit a7cc47f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# 0.004002

Fix minor issues so git-autofixup works with Git for Windows:

- close index temp file so git can write to it. (Windows has different file
locking behaviour than *nix.)
- load Pod::Usage at runtime since Git for Windows doesn't include it and has
special handling for `git <cmd> --help` such that it wouldn't get used anyway
unless git-autofixup was invoked directly.

Fix some test failures:

- skip tests when perl is for Cygwin but git is for MSYS
- skip testing backslashes on Windows (Cygwin|MSYS)
- fallback to --set-upstream for old git versions where --set-upstream-to isn't
available

# 0.004001

- Fix test plans so Test::More::plan() doesn't get called twice when git isn't
Expand Down
2 changes: 1 addition & 1 deletion git-autofixup
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use File::Temp;
use Getopt::Long qw(:config bundling);
use IPC::Open3;

our $VERSION = 0.004001;
our $VERSION = 0.004002;

my $VERBOSE;
my @GIT_OPTIONS;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Git/Autofixup.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package App::Git::Autofixup;
use strict;
use warnings FATAL => 'all';

our $VERSION = 0.004001;
our $VERSION = 0.004002;

=head1 NAME
Expand Down

0 comments on commit a7cc47f

Please sign in to comment.