aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-06 16:05:30 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-06 16:05:30 +1300
commit58372f97e93bd1309c28d7f4df98d3ca74ba059b (patch)
treeddda9a5d2e70e2ba0e9530cacd86f956ed4b80e5
parentMake POD dependencies into links (diff)
parentBump version number to 0.10 (diff)
downloadMusic-Lyrics-LRC-58372f97e93bd1309c28d7f4df98d3ca74ba059b.tar.gz
Music-Lyrics-LRC-58372f97e93bd1309c28d7f4df98d3ca74ba059b.zip
Merge branch 'release/v0.10' into develop
* release/v0.10: Bump version number to 0.10
-rw-r--r--Changes4
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown6
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
5 files changed, 11 insertions, 7 deletions
diff --git a/Changes b/Changes
index 58e46bc..416ac2f 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for Music-Lyrics-LRC
+0.10 2017-12-06
+
+ - Add dependency links to documentation
+
0.09 2017-11-02
- Tolerate single-digit seconds in lyric timestamps
diff --git a/Makefile.PL b/Makefile.PL
index d941f92..cac8e48 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -25,7 +25,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.09',
+ version => '0.10',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 1ba7a02..742f74e 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
# VERSION
-Version 0.09
+Version 0.10
# DESCRIPTION
@@ -152,8 +152,8 @@ appropriate I/O layers you want, especially encoding.
# DEPENDENCIES
- Perl 5.6 or newer
-- `Carp`
-- `English`
+- [Carp](https://metacpan.org/pod/Carp)
+- [English](https://metacpan.org/pod/English)
# INCOMPATIBILITIES
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index c785144..4f8d3fb 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.09';
+our $VERSION = '0.10';
# 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.09
+Version 0.10
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 054e269..d849044 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.09';
+our $VERSION = '0.10';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );