Skip to content

Commit

Permalink
Version 0.004000
Browse files Browse the repository at this point in the history
  • Loading branch information
torbiak committed Sep 14, 2023
1 parent a39a919 commit 23729d4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 0.004000

- Automatically choose an upstream revision if one isn't supplied, based on the
upstream/tracking branch.
- Support quoted filenames in diff output. git-autofixup now works with
filenames containing non-ASCII characters.
- Improve error messages and handling. For git commands that are expected to
fail, their stderr is captured, annotated with the command, and printed, to
clarify the cause of errors.
- Deprecate --gitopt|-g in favor of GIT_CONFIG_{COUNT,KEY,VALUE} environment
variables.

# 0.003002

- Speed up creation of temporary git index by copying the existing one and
Expand Down
2 changes: 1 addition & 1 deletion git-autofixup
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Getopt::Long qw(:config bundling);
use IPC::Open3;
use Pod::Usage;

our $VERSION = 0.003002;
our $VERSION = 0.004000;

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.003002;
our $VERSION = 0.004000;

=head1 NAME
Expand Down

0 comments on commit 23729d4

Please sign in to comment.