aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-06 16:04:28 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-06 16:04:28 +1300
commitb30fdddd191db39cd68471063834eeee3006ba31 (patch)
treeddda9a5d2e70e2ba0e9530cacd86f956ed4b80e5
parentMerge branch 'release/v0.09' (diff)
parentBump version number to 0.10 (diff)
downloadMusic-Lyrics-LRC-b30fdddd191db39cd68471063834eeee3006ba31.tar.gz
Music-Lyrics-LRC-b30fdddd191db39cd68471063834eeee3006ba31.zip
Merge branch 'release/v0.10'v0.10
* release/v0.10: Bump version number to 0.10 Make POD dependencies into links Rearrange `use` statements Ignore 'tags' files
-rw-r--r--.gitignore1
-rw-r--r--Changes4
-rw-r--r--MANIFEST.SKIP1
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown6
-rw-r--r--lib/Music/Lyrics/LRC.pm14
-rw-r--r--t/basic.t2
7 files changed, 18 insertions, 12 deletions
diff --git a/.gitignore b/.gitignore
index 42e4a46..b97aed2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,5 +14,6 @@ inc/
nytprof.out
pod2htm*.tmp
pm_to_blib
+/tags
Music-Lyrics-LRC-*
Music-Lyrics-LRC-*.tar.gz
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/MANIFEST.SKIP b/MANIFEST.SKIP
index bf1a02b..de3325f 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -7,3 +7,4 @@
^README\.markdown
^blib
^pm_to_blib$
+^tags$
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 5a83cfc..4f8d3fb 100644
--- a/lib/Music/Lyrics/LRC.pm
+++ b/lib/Music/Lyrics/LRC.pm
@@ -5,15 +5,15 @@ use strict;
use warnings;
use utf8;
+# Target reasonably old Perl
+use 5.006;
+
# Include required modules
use Carp;
use English '-no_match_vars';
-# Target reasonably old Perl
-use 5.006;
-
# 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
@@ -431,11 +431,11 @@ Perl 5.6 or newer
=item *
-C<Carp>
+L<Carp|Carp>
=item *
-C<English>
+L<English|English>
=back
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' );