aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-08 13:42:39 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-08 13:42:39 +1300
commit33a38fd85f8944f4b99c91d1f3538856363db99c (patch)
treeda9ea446bba4b2b96a3a85cf7042ce5e6b329ecc
parentMerge branch 'feature/doc-test' into develop (diff)
downloadMusic-Lyrics-LRC-33a38fd85f8944f4b99c91d1f3538856363db99c.tar.gz
Music-Lyrics-LRC-33a38fd85f8944f4b99c91d1f3538856363db99c.zip
Bump version number to 0.11
-rw-r--r--Makefile.PL2
-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
5 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.PL b/Makefile.PL
index b2ddd08..2f35c7c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -27,7 +27,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.10',
+ version => '0.11',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index d9b914c..842702d 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.10';
+our $VERSION = '0.11';
# 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.10
+Version 0.11
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index d849044..6092db0 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.10';
+our $VERSION = '0.11';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );
diff --git a/t/load.t b/t/load.t
index 026117b..17242f2 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.10';
+our $VERSION = '0.11';
my $lrc = Music::Lyrics::LRC->new();
diff --git a/t/save.t b/t/save.t
index 27c5020..ad55df8 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.10';
+our $VERSION = '0.11';
my $lrc = Music::Lyrics::LRC->new();
$lrc->set_tag( 'foo', 'bar' );