aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 17:09:36 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 17:09:36 +1300
commit17d8d1eeea81edfb3091808f3c8a07366a0720c0 (patch)
treeec15921af7e23eeef34bb085863da7fbdce005e7
parentMerge branch 'feature/one-digit-second' into develop (diff)
downloadMusic-Lyrics-LRC-17d8d1eeea81edfb3091808f3c8a07366a0720c0.tar.gz
Music-Lyrics-LRC-17d8d1eeea81edfb3091808f3c8a07366a0720c0.zip
Bump version number to 0.09
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
3 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.PL b/Makefile.PL
index abfeeab..d941f92 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.08',
+ version => '0.09',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 25d94e3..5a83cfc 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -13,7 +13,7 @@ use English '-no_match_vars';
use 5.006;
# Declare package version
-our $VERSION = '0.08';
+our $VERSION = '0.09';
# 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.08
+Version 0.09
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 5600c75..054e269 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.08';
+our $VERSION = '0.09';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );