From 96fdc6cb54f2f0781c850bdfe6206627ea747f82 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Feb 2018 17:09:16 +1300 Subject: Fix botched Changes file --- Changes | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index cc07e44..618fa99 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,13 @@ Revision history for Music-Lyrics-LRC -0.12 2017-12-21 +0.13 2018-02-21 + + - Fix botched Changes file for previous release... + +0.12 2018-02-21 - Begin signing distributions with Module::Signature - + 0.11 2017-12-08 - Add basic load() and save() method tests -- cgit v1.2.3 From f48a63ea3c2549f2d7c61f737f5556588af3647c Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Feb 2018 17:10:02 +1300 Subject: Bump version number to 0.13 --- Makefile.PL | 2 +- README.markdown | 2 +- lib/Music/Lyrics/LRC.pm | 4 ++-- t/basic.t | 2 +- t/load.t | 2 +- t/save.t | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 26bf209..7433f29 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -28,7 +28,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'Music::Lyrics::LRC' => { - version => '0.12', + version => '0.13', file => 'lib/Music/Lyrics/LRC.pm', }, }, diff --git a/README.markdown b/README.markdown index 05e8ad2..cef641c 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files # VERSION -Version 0.12 +Version 0.13 # DESCRIPTION diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm index dafe9ac..c0de459 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.12'; +our $VERSION = '0.13'; # 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.12 +Version 0.13 =head1 DESCRIPTION diff --git a/t/basic.t b/t/basic.t index 0b8c186..5b2c692 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.12'; +our $VERSION = '0.13'; my $lrc = Music::Lyrics::LRC->new(); ok( defined $lrc, 'constructed' ); diff --git a/t/load.t b/t/load.t index 12077d6..5675f53 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.12'; +our $VERSION = '0.13'; my $lrc = Music::Lyrics::LRC->new(); diff --git a/t/save.t b/t/save.t index 38a43da..9fa9b83 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.12'; +our $VERSION = '0.13'; my $lrc = Music::Lyrics::LRC->new(); $lrc->set_tag( 'foo', 'bar' ); -- cgit v1.2.3