aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-03-05 17:54:53 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-03-05 17:54:53 +1300
commit786ef0f9bb6b2529b706b74b6d1b4316042ff7b8 (patch)
tree0a3c9aa91d4700939779000ec0ae66518e9c5fc6
parentCorrect fatal error in example code (diff)
parentBump version number to 0.14 (diff)
downloadMusic-Lyrics-LRC-786ef0f9bb6b2529b706b74b6d1b4316042ff7b8.tar.gz
Music-Lyrics-LRC-786ef0f9bb6b2529b706b74b6d1b4316042ff7b8.zip
Merge branch 'release/v0.14' into develop
* release/v0.14: Bump version number to 0.14
-rw-r--r--Changes4
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown2
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
-rw-r--r--t/load.t2
-rw-r--r--t/save.t2
7 files changed, 11 insertions, 7 deletions
diff --git a/Changes b/Changes
index 618fa99..c8ef280 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for Music-Lyrics-LRC
+0.14 2017-03-05
+
+ - Correct fatal error in documentation example code
+
0.13 2018-02-21
- Fix botched Changes file for previous release...
diff --git a/Makefile.PL b/Makefile.PL
index 7433f29..4c5bc3b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -28,7 +28,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.13',
+ version => '0.14',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 7b52292..044cc32 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
# VERSION
-Version 0.13
+Version 0.14
# DESCRIPTION
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 92c1b9e..73003b0 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -13,7 +13,7 @@ use Carp;
use English '-no_match_vars';
# Declare package version
-our $VERSION = '0.13';
+our $VERSION = '0.14';
# 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.13
+Version 0.14
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 5b2c692..e957ca6 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.13';
+our $VERSION = '0.14';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );
diff --git a/t/load.t b/t/load.t
index 5675f53..4eefc1b 100644
--- a/t/load.t
+++ b/t/load.t
@@ -11,7 +11,7 @@ use Test::More tests => 11;
use Music::Lyrics::LRC;
-our $VERSION = '0.13';
+our $VERSION = '0.14';
my $lrc = Music::Lyrics::LRC->new();
diff --git a/t/save.t b/t/save.t
index 9fa9b83..651eb7a 100644
--- a/t/save.t
+++ b/t/save.t
@@ -12,7 +12,7 @@ use Test::More tests => 2;
use Music::Lyrics::LRC;
-our $VERSION = '0.13';
+our $VERSION = '0.14';
my $lrc = Music::Lyrics::LRC->new();
$lrc->set_tag( 'foo', 'bar' );