Skip to content

Commit

Permalink
Released version 1.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Aug 8, 2013
1 parent 904f917 commit 7ba62c5
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.1.0 2013-08-08
* Added optional caching mechanism for blame()'s output.
* Cleaned up tests and added Coveralls.io support.

v1.0.5 2013-04-07
* Added Test::FailWarnings to all tests.
* Reported Search CPAN links to MetaCPAN.
Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@
"provides" : {
"Git::Repository::Plugin::Blame" : {
"file" : "lib/Git/Repository/Plugin/Blame.pm",
"version" : "v1.0.5"
"version" : "v1.1.0"
},
"Git::Repository::Plugin::Blame::Cache" : {
"file" : "lib/Git/Repository/Plugin/Blame/Cache.pm",
"version" : "v1.0.5"
"version" : "v1.1.0"
},
"Git::Repository::Plugin::Blame::Line" : {
"file" : "lib/Git/Repository/Plugin/Blame/Line.pm",
"version" : "v1.0.5"
"version" : "v1.1.0"
}
},
"release_status" : "stable",
Expand All @@ -68,5 +68,5 @@
"url" : "https://github.com/guillaumeaubert/Git-Repository-Plugin-Blame"
}
},
"version" : "v1.0.5"
"version" : "v1.1.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.0.5
version: v1.1.0
Git::Repository::Plugin::Blame::Cache:
file: lib/Git/Repository/Plugin/Blame/Cache.pm
version: v1.0.5
version: v1.1.0
Git::Repository::Plugin::Blame::Line:
file: lib/Git/Repository/Plugin/Blame/Line.pm
version: v1.0.5
version: v1.1.0
requires:
Carp: 0
Class::Load: 0
Expand All @@ -41,4 +41,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.0.5
version: v1.1.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.0.5
Version 1.1.0
=cut

our $VERSION = '1.0.5';
our $VERSION = '1.1.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->b
=head1 VERSION
Version 1.0.5
Version 1.1.0
=cut

our $VERSION = '1.0.5';
our $VERSION = '1.1.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.0.5
Version 1.1.0
=cut

our $VERSION = '1.0.5';
our $VERSION = '1.1.0';


=head1 SYNOPSIS
Expand Down

0 comments on commit 7ba62c5

Please sign in to comment.