Skip to content

Commit

Permalink
Release version 1.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed May 24, 2015
1 parent fb3d19c commit b2bd7ad
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Git-Repository-Plugin-Blame.

v1.3.0 2015-05-24
- Added 'ignore_whitespace' option to blame(). Thank you, Dominic
Sonntag!

v1.2.3 2014-11-24
- Fixed POD (GH-6). Thank you, Сергей Романов!

Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
"provides" : {
"Git::Repository::Plugin::Blame" : {
"file" : "lib/Git/Repository/Plugin/Blame.pm",
"version" : "v1.2.3"
"version" : "v1.3.0"
},
"Git::Repository::Plugin::Blame::Cache" : {
"file" : "lib/Git/Repository/Plugin/Blame/Cache.pm",
"version" : "v1.2.3"
"version" : "v1.3.0"
},
"Git::Repository::Plugin::Blame::Line" : {
"file" : "lib/Git/Repository/Plugin/Blame/Line.pm",
"version" : "v1.2.3"
"version" : "v1.3.0"
}
},
"release_status" : "stable",
Expand All @@ -69,5 +69,5 @@
"url" : "https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame"
}
},
"version" : "v1.2.3"
"version" : "v1.3.0"
}
8 changes: 4 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ name: Git-Repository-Plugin-Blame
provides:
Git::Repository::Plugin::Blame:
file: lib/Git/Repository/Plugin/Blame.pm
version: v1.2.3
version: v1.3.0
Git::Repository::Plugin::Blame::Cache:
file: lib/Git/Repository/Plugin/Blame/Cache.pm
version: v1.2.3
version: v1.3.0
Git::Repository::Plugin::Blame::Line:
file: lib/Git/Repository/Plugin/Blame/Line.pm
version: v1.2.3
version: v1.3.0
requires:
Carp: '0'
Class::Load: '0.2'
Expand All @@ -42,4 +42,4 @@ resources:
homepage: https://metacpan.org/release/Git-Repository-Plugin-Blame
license: http://www.gnu.org/licenses/gpl-3.0.txt
repository: https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame
version: v1.2.3
version: v1.3.0
4 changes: 2 additions & 2 deletions lib/Git/Repository/Plugin/Blame.pm
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ Git::Repository::Plugin::Blame - Add a blame() method to L<Git::Repository>.
=head1 VERSION
Version 1.2.3
Version 1.3.0
=cut

our $VERSION = '1.2.3';
our $VERSION = '1.3.0';


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

our $VERSION = '1.2.3';
our $VERSION = '1.3.0';

my $CACHE = {};

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

our $VERSION = '1.2.3';
our $VERSION = '1.3.0';


=head1 SYNOPSIS
Expand Down

0 comments on commit b2bd7ad

Please sign in to comment.