From 17d8d1eeea81edfb3091808f3c8a07366a0720c0 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 2 Nov 2017 17:09:36 +1300 Subject: Bump version number to 0.09 --- Makefile.PL | 2 +- lib/Music/Lyrics/LRC.pm | 4 ++-- t/basic.t | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index abfeeab..d941f92 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -25,7 +25,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'Music::Lyrics::LRC' => { - version => '0.08', + version => '0.09', file => 'lib/Music/Lyrics/LRC.pm', }, }, diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm index 25d94e3..5a83cfc 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.08'; +our $VERSION = '0.09'; # 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.08 +Version 0.09 =head1 DESCRIPTION diff --git a/t/basic.t b/t/basic.t index 5600c75..054e269 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.08'; +our $VERSION = '0.09'; my $lrc = Music::Lyrics::LRC->new(); ok( defined $lrc, 'constructed' ); -- cgit v1.2.3 From 3a179f544270dc31f5d414fe138b3cf41d286652 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 2 Nov 2017 17:10:43 +1300 Subject: Update Changes --- Changes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Changes b/Changes index 118c20e..58e46bc 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Music-Lyrics-LRC +0.09 2017-11-02 + + - Tolerate single-digit seconds in lyric timestamps + 0.08 2017-11-02 - Handle blank lyric lines correctly -- cgit v1.2.3 From 2d497ec833a99e13f538454d54fc4829c8500678 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 2 Nov 2017 17:10:50 +1300 Subject: Update README.markdown I forgot to do this for the previous release. --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index fcaecd7..1ba7a02 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files # VERSION -Version 0.07 +Version 0.09 # DESCRIPTION @@ -184,7 +184,7 @@ This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License (2.0). You may obtain a copy of the full license at: -<http://www.perlfoundation.org/artistic\_license\_2\_0> +[http://www.perlfoundation.org/artistic\_license\_2\_0](http://www.perlfoundation.org/artistic_license_2_0) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the -- cgit v1.2.3