aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 16:50:20 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 16:50:20 +1300
commit8c630634f713f83cd36d4c4277a20b4b7bcae9b5 (patch)
tree659259841b1b5d8cb8bd9c7292ac5faf26a3571b
parentMerge branch 'feature/tagname-non...' into develop (diff)
downloadMusic-Lyrics-LRC-8c630634f713f83cd36d4c4277a20b4b7bcae9b5.tar.gz
Music-Lyrics-LRC-8c630634f713f83cd36d4c4277a20b4b7bcae9b5.zip
Bump version number to 0.08
-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 fa6b1f2..abfeeab 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.07',
+ version => '0.08',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index aa9ab37..f7f6cdc 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.07';
+our $VERSION = '0.08';
# 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.07
+Version 0.08
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index a0f91f8..5600c75 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.07';
+our $VERSION = '0.08';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );