Skip to content

Commit b60cec2

Browse files
committed
Version v0.1
Update the version number and the list of Changes. Additionally, add the missing abstract to the build script.
1 parent fab473a commit b60cec2

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

Build.PL

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use Module::Build;
88

99
my $builder = Module::Build->new(
1010
dist_name => 'git-svn-diff',
11+
dist_abstract => 'SVN-style diff for git-svn repositories',
1112
license => 'gpl',
1213
dist_author => q{Chris Lindee <chris.lindee+github@gmail.com>},
1314
dist_version_from => 'bin/git-svn-diff',

Changes

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Revision history for git-svn-diff
22

3+
v0.1 2016-12-18
4+
Implemented #1: Acceptance test suite
5+
Implemented #31: Add SVN v1.9 "nonexistent" annotation
6+
Fixed #3: Removed dependency on POD::Usage
7+
Fixed #4: Accept SVN revisions as commit arguments
8+
Fixed #5: Work with older Perls
9+
Fixed #6: Handle binary files
10+
Fixed #14: Work with orphaned commits
11+
Fixed #16: Work with empty files
12+
Changed license to GPLv2
13+
314
0.00_01 2012-10-07
4-
Initial release.
15+
Initial development alpha release.
516

bin/git-svn-diff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Git qw/command command_oneline command_output_pipe command_close_pipe/;
1111
sub alert { print STDERR "warn: $_\n" foreach (@_); }
1212
sub fatal { print STDERR "fatal: $_\n" foreach (@_); exit 255; }
1313

14-
our $VERSION = '0.00_01';
14+
our $VERSION = '0.001';
1515

1616
my $includeRepoPath;
1717
my $globalRevision = getGitConfigBool("svn.diffGlobalRevision", 1);

0 commit comments

Comments
 (0)