aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-02 09:17:26 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-02 09:17:26 +1300
commita50cc94445882c0800dc8d8ce20b17d6aec8787a (patch)
treecedb380ffb6545c6b3b4ea82653485c3abfbdd03
parentMerge branch 'release/v0.05' (diff)
downloadMusic-Lyrics-LRC-a50cc94445882c0800dc8d8ce20b17d6aec8787a.tar.gz
Music-Lyrics-LRC-a50cc94445882c0800dc8d8ce20b17d6aec8787a.zip
Bump version number
-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 a3e893e..5f02fdb 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
Revision history for Music-Lyrics-LRC
+0.06 2017-11-02
+
+ - Correct syntax of output file: the format uses a period for the fractional
+ second separator, not a colon
+
0.05 2017-11-02
- Documentation corrections
diff --git a/Makefile.PL b/Makefile.PL
index 172e64c..2707497 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.05',
+ version => '0.06',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 5035187..d4cca9c 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.05';
+our $VERSION = '0.06';
# 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.05
+Version 0.06
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 5d7f871..33ad0c0 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.05';
+our $VERSION = '0.06';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );