aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 00:00:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 00:00:28 +1300
commitbadd7bc3c0b133f887b90bae2433ad835c8c2312 (patch)
treef77b19a2376ad04d8c2ab103358285b4d18a8ab4
parentPerl::Tidy run over tiny test suite (diff)
downloadMusic-Lyrics-LRC-badd7bc3c0b133f887b90bae2433ad835c8c2312.tar.gz
Music-Lyrics-LRC-badd7bc3c0b133f887b90bae2433ad835c8c2312.zip
Bump version numberv0.03
-rw-r--r--Changes5
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
4 files changed, 9 insertions, 4 deletions
diff --git a/Changes b/Changes
index 9c3b72f..6fd0658 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
Revision history for Music-Lyrics-LRC
+0.03 2017-11-01
+
+ - First CPAN release, with some documentation and a very simple and not yet
+ comprehensive test suite.
+
0.02 2017-11-01
- All of the interface methods I have in mind now implemented and tested, and
diff --git a/Makefile.PL b/Makefile.PL
index be3c8cf..a5398a2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.02',
+ version => '0.03',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index e156ab5..bdf4013 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.02';
+our $VERSION = '0.03';
# Patterns to match elements of the LRC file; these are somewhat tolerant
our %RE = (
@@ -264,7 +264,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
=head1 VERSION
-Version 0.02
+Version 0.03
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 337cd13..6c2745b 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.02';
+our $VERSION => '0.03';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );