aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 10:38:59 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 10:39:16 +1300
commit3e7047fe57dba2cfe36667c1de9ca458f075ab4e (patch)
tree38d9a05a13431d4e8bf441471a075d115aa5eaf0
parentMerge branch 'feature/verbose' into develop (diff)
downloadMusic-Lyrics-LRC-3e7047fe57dba2cfe36667c1de9ca458f075ab4e.tar.gz
Music-Lyrics-LRC-3e7047fe57dba2cfe36667c1de9ca458f075ab4e.zip
Bump version number to 0.07
-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 2707497..fa6b1f2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.06',
+ version => '0.07',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index e995b87..f665437 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.06';
+our $VERSION = '0.07';
# Patterns to match elements of the LRC file; these are somewhat tolerant
our %RE = (
@@ -270,7 +270,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
=head1 VERSION
-Version 0.06
+Version 0.07
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 33ad0c0..43679c9 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.06';
+our $VERSION = '0.07';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );