Skip to content

Commit

Permalink
Version 0.004007
Browse files Browse the repository at this point in the history
  • Loading branch information
torbiak committed Nov 13, 2024
1 parent c8ef558 commit 55e3297
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# unreleased
# 0.004007

- Use the `--no-prefix` option for calls to `git diff` so that git-autofixup works regardless the configured values of the relatively new diff.srcPrefix and diff.dstPrefix variables, added in Git 2.45.0, as well as the older diff.noPrefix and diff.mnemonicPrefix.
- Stop using `FATAL => 'all'` with `use warnings`. While it can be useful to fatalize warnings during development and in tests, we don't want git-autofixup to refuse to run over a warning.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ LICENSE
Makefile.PL
MANIFEST
META.yml
prove-with-git-from-source
README.pod
t/autofixup.t
t/capture.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.004006;
our $VERSION = 0.004007;

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.004006;
our $VERSION = 0.004007;

=head1 NAME
Expand Down

0 comments on commit 55e3297

Please sign in to comment.