From a6ee5bcd0d7a5ce9bbe6fbac1df4699b7e1412dd Mon Sep 17 00:00:00 2001 From: Guillaume Aubert Date: Wed, 22 Mar 2017 22:55:33 -0700 Subject: [PATCH] Release version v1.4.0. --- Changes | 5 ++++ META.json | 8 +++--- META.yml | 8 +++--- Makefile.PL | 34 ++++++++++++------------ lib/Git/Repository/Plugin/Blame.pm | 4 +-- lib/Git/Repository/Plugin/Blame/Cache.pm | 4 +-- lib/Git/Repository/Plugin/Blame/Line.pm | 4 +-- 7 files changed, 36 insertions(+), 31 deletions(-) diff --git a/Changes b/Changes index 68ce94a..31a4142 100644 --- a/Changes +++ b/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! diff --git a/META.json b/META.json index a3e8404..84c2642 100644 --- a/META.json +++ b/META.json @@ -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", @@ -70,5 +70,5 @@ "url" : "https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame" } }, - "version" : "v1.3.0" + "version" : "v1.4.0" } diff --git a/META.yml b/META.yml index f1da83b..4fd165c 100644 --- a/META.yml +++ b/META.yml @@ -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' @@ -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 diff --git a/Makefile.PL b/Makefile.PL index b5d468e..f306b0f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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' ) ; diff --git a/lib/Git/Repository/Plugin/Blame.pm b/lib/Git/Repository/Plugin/Blame.pm index 6156a87..c99f3f7 100644 --- a/lib/Git/Repository/Plugin/Blame.pm +++ b/lib/Git/Repository/Plugin/Blame.pm @@ -21,11 +21,11 @@ Git::Repository::Plugin::Blame - Add a blame() method to L. =head1 VERSION -Version 1.3.0 +Version 1.4.0 =cut -our $VERSION = '1.3.0'; +our $VERSION = '1.4.0'; =head1 SYNOPSIS diff --git a/lib/Git/Repository/Plugin/Blame/Cache.pm b/lib/Git/Repository/Plugin/Blame/Cache.pm index fa52152..b80d748 100644 --- a/lib/Git/Repository/Plugin/Blame/Cache.pm +++ b/lib/Git/Repository/Plugin/Blame/Cache.pm @@ -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 = {}; diff --git a/lib/Git/Repository/Plugin/Blame/Line.pm b/lib/Git/Repository/Plugin/Blame/Line.pm index 6f2d758..528622d 100644 --- a/lib/Git/Repository/Plugin/Blame/Line.pm +++ b/lib/Git/Repository/Plugin/Blame/Line.pm @@ -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