aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 07:45:52 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 07:45:52 +1300
commit4c95abe15169c87abbb49dac21832e3c58db0c4e (patch)
treef0c3f482b2300112d8226882a56358bfbefbe06f
parentMerge feature branches into develop: (diff)
downloadMusic-Lyrics-LRC-4c95abe15169c87abbb49dac21832e3c58db0c4e.tar.gz
Music-Lyrics-LRC-4c95abe15169c87abbb49dac21832e3c58db0c4e.zip
Bump version number to 0.05
-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 db4d3d5..a3e893e 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
Revision history for Music-Lyrics-LRC
+0.05 2017-11-02
+
+ - Documentation corrections
+ - LICENSE file
+
0.04 2017-11-02
- Documentation corrections and fixed parameter validation.
diff --git a/Makefile.PL b/Makefile.PL
index 31aef35..172e64c 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.04',
+ version => '0.05',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 760ee03..5035187 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.04';
+our $VERSION = '0.05';
# 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.04
+Version 0.05
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index b78c665..5d7f871 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.04';
+our $VERSION = '0.05';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );