From 4417c94b3d58ef10b0a0ba0aa8cf9120f9a2e88d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 6 Nov 2017 22:44:19 +1300 Subject: Ignore 'tags' files --- .gitignore | 1 + MANIFEST.SKIP | 1 + 2 files changed, 2 insertions(+) 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/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$ -- cgit v1.2.3 From de64f41f2f3f778a954b549a18f3b19ce8d38486 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 6 Dec 2017 15:57:52 +1300 Subject: Rearrange `use` statements --- lib/Music/Lyrics/LRC.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm index 5a83cfc..e9cf314 100644 --- a/lib/Music/Lyrics/LRC.pm +++ b/lib/Music/Lyrics/LRC.pm @@ -5,13 +5,13 @@ 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'; -- cgit v1.2.3 From 5c1e8fa41d619187960d709e56a53549fa22aa3d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 6 Dec 2017 15:58:01 +1300 Subject: Make POD dependencies into links --- lib/Music/Lyrics/LRC.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm index e9cf314..c785144 100644 --- a/lib/Music/Lyrics/LRC.pm +++ b/lib/Music/Lyrics/LRC.pm @@ -431,11 +431,11 @@ Perl 5.6 or newer =item * -C +L =item * -C +L =back -- cgit v1.2.3 From c326f9d009db3f8edb2288b5079e892da64f2796 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 6 Dec 2017 16:04:15 +1300 Subject: Bump version number to 0.10 --- Changes | 4 ++++ Makefile.PL | 2 +- README.markdown | 6 +++--- lib/Music/Lyrics/LRC.pm | 4 ++-- t/basic.t | 2 +- 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' ); -- cgit v1.2.3