aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-02-21 16:59:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-02-21 16:59:41 +1300
commite729a8ee152ac1ddc7e2083a147db69abf642aa8 (patch)
tree4732b21ce8777c3141d215da9d8c181f60a47ed9
parentMerge branch 'release/v0.11' (diff)
parentUpdate Changes (diff)
downloadMusic-Lyrics-LRC-e729a8ee152ac1ddc7e2083a147db69abf642aa8.tar.gz
Music-Lyrics-LRC-e729a8ee152ac1ddc7e2083a147db69abf642aa8.zip
Merge branch 'release/v0.12'v0.12
* release/v0.12: Update Changes Bump version number to 0.12 Add Module::Signature line to Makefile.PL
-rw-r--r--Changes4
-rw-r--r--Makefile.PL3
-rw-r--r--README.markdown2
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
-rw-r--r--t/load.t2
-rw-r--r--t/save.t2
7 files changed, 12 insertions, 7 deletions
diff --git a/Changes b/Changes
index 75581c3..cc07e44 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for Music-Lyrics-LRC
+0.12 2017-12-21
+
+ - Begin signing distributions with Module::Signature
+
0.11 2017-12-08
- Add basic load() and save() method tests
diff --git a/Makefile.PL b/Makefile.PL
index 2f35c7c..26bf209 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,6 +4,7 @@ use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
+ (MM->can('signature_target') ? (SIGN => 1) : ()),
NAME => 'Music::Lyrics::LRC',
AUTHOR => q{Tom Ryder <tom@sanctum.geek.nz>},
VERSION_FROM => 'lib/Music/Lyrics/LRC.pm',
@@ -27,7 +28,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.11',
+ version => '0.12',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/README.markdown b/README.markdown
index c4d45ce..05e8ad2 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
# VERSION
-Version 0.11
+Version 0.12
# DESCRIPTION
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 842702d..dafe9ac 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -13,7 +13,7 @@ use Carp;
use English '-no_match_vars';
# Declare package version
-our $VERSION = '0.11';
+our $VERSION = '0.12';
# Patterns to match elements of the LRC file; these are somewhat tolerant
our %RE = (
@@ -272,7 +272,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
=head1 VERSION
-Version 0.11
+Version 0.12
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 6092db0..0b8c186 100644
--- a/t/basic.t
+++ b/t/basic.t
@@ -8,7 +8,7 @@ use Test::More tests => 9;
use Music::Lyrics::LRC;
-our $VERSION = '0.11';
+our $VERSION = '0.12';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );
diff --git a/t/load.t b/t/load.t
index 17242f2..12077d6 100644
--- a/t/load.t
+++ b/t/load.t
@@ -11,7 +11,7 @@ use Test::More tests => 11;
use Music::Lyrics::LRC;
-our $VERSION = '0.11';
+our $VERSION = '0.12';
my $lrc = Music::Lyrics::LRC->new();
diff --git a/t/save.t b/t/save.t
index ad55df8..38a43da 100644
--- a/t/save.t
+++ b/t/save.t
@@ -12,7 +12,7 @@ use Test::More tests => 2;
use Music::Lyrics::LRC;
-our $VERSION = '0.11';
+our $VERSION = '0.12';
my $lrc = Music::Lyrics::LRC->new();
$lrc->set_tag( 'foo', 'bar' );