Skip to content

Commit

Permalink
Release version v1.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Mar 23, 2017
1 parent 8b12dab commit a6ee5bc
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 31 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Git-Repository-Plugin-Blame.

v1.4.0 2017-03-21
- Relicensed under Perl 5 terms.
- Switched to Test::Requires::Git instead of the now obsolete
Test::Git::has_git(). Thank you, Philippe Bruhat!

v1.3.0 2015-05-24
- Added 'ignore_whitespace' option to blame(). Thank you, Dominic
Sonntag!
Expand Down
8 changes: 4 additions & 4 deletions META.json
Expand Up @@ -46,15 +46,15 @@
"provides" : {
"Git::Repository::Plugin::Blame" : {
"file" : "lib/Git/Repository/Plugin/Blame.pm",
"version" : "v1.3.0"
"version" : "v1.4.0"
},
"Git::Repository::Plugin::Blame::Cache" : {
"file" : "lib/Git/Repository/Plugin/Blame/Cache.pm",
"version" : "v1.3.0"
"version" : "v1.4.0"
},
"Git::Repository::Plugin::Blame::Line" : {
"file" : "lib/Git/Repository/Plugin/Blame/Line.pm",
"version" : "v1.3.0"
"version" : "v1.4.0"
}
},
"release_status" : "stable",
Expand All @@ -70,5 +70,5 @@
"url" : "https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame"
}
},
"version" : "v1.3.0"
"version" : "v1.4.0"
}
8 changes: 4 additions & 4 deletions META.yml
Expand Up @@ -23,13 +23,13 @@ name: Git-Repository-Plugin-Blame
provides:
Git::Repository::Plugin::Blame:
file: lib/Git/Repository/Plugin/Blame.pm
version: v1.3.0
version: v1.4.0
Git::Repository::Plugin::Blame::Cache:
file: lib/Git/Repository/Plugin/Blame/Cache.pm
version: v1.3.0
version: v1.4.0
Git::Repository::Plugin::Blame::Line:
file: lib/Git/Repository/Plugin/Blame/Line.pm
version: v1.3.0
version: v1.4.0
requires:
Carp: '0'
Class::Load: '0.2'
Expand All @@ -43,4 +43,4 @@ resources:
homepage: https://metacpan.org/release/Git-Repository-Plugin-Blame
license: http://dev.perl.org/licenses/
repository: https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame
version: v1.3.0
version: v1.4.0
34 changes: 17 additions & 17 deletions Makefile.PL
Expand Up @@ -3,29 +3,29 @@ require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'VERSION_FROM' => 'lib/Git/Repository/Plugin/Blame.pm',
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'test' => {
'TESTS' => 't/*.t t/05-Cache/*.t t/Line/*.t'
},
'NAME' => 'Git::Repository::Plugin::Blame',
'PREREQ_PM' => {
'Test::Requires::Git' => '1.005',
'Git::Repository::Plugin::Log' => 0,
'Class::Load' => '0.2',
'Test::Git' => 0,
'Data::Validate::Type' => 0,
'Test::More' => 0,
'Test::FailWarnings' => 0,
'Test::Deep' => 0,
'Git::Repository' => '1.2',
'Test::Type' => 0,
'Perl6::Slurp' => 0,
'Test::Exception' => 0,
'Test::Type' => 0,
'Carp' => 0,
'Data::Dumper' => 0,
'Test::Requires::Git' => '1.005',
'Test::Deep' => 0,
'Test::FailWarnings' => 0
'Test::Git' => 0,
'Carp' => 0,
'Class::Load' => '0.2',
'Test::More' => 0,
'Data::Validate::Type' => 0
},
'INSTALLDIRS' => 'site',
'PL_FILES' => {},
'NAME' => 'Git::Repository::Plugin::Blame',
'EXE_FILES' => [],
'test' => {
'TESTS' => 't/*.t t/05-Cache/*.t t/Line/*.t'
}
'VERSION_FROM' => 'lib/Git/Repository/Plugin/Blame.pm'
)
;
4 changes: 2 additions & 2 deletions lib/Git/Repository/Plugin/Blame.pm
Expand Up @@ -21,11 +21,11 @@ Git::Repository::Plugin::Blame - Add a blame() method to L<Git::Repository>.
=head1 VERSION
Version 1.3.0
Version 1.4.0
=cut

our $VERSION = '1.3.0';
our $VERSION = '1.4.0';


=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Git/Repository/Plugin/Blame/Cache.pm
Expand Up @@ -14,11 +14,11 @@ Git::Repository::Plugin::Blame::Cache - Cache the output of C<< Git::Repository-
=head1 VERSION
Version 1.3.0
Version 1.4.0
=cut

our $VERSION = '1.3.0';
our $VERSION = '1.4.0';

my $CACHE = {};

Expand Down
4 changes: 2 additions & 2 deletions lib/Git/Repository/Plugin/Blame/Line.pm
Expand Up @@ -14,11 +14,11 @@ Git::Repository::Plugin::Blame::Line - Store the git blame information for a lin
=head1 VERSION
Version 1.3.0
Version 1.4.0
=cut

our $VERSION = '1.3.0';
our $VERSION = '1.4.0';


=head1 SYNOPSIS
Expand Down

0 comments on commit a6ee5bc

Please sign in to comment.