aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2021-07-01 12:01:11 +1200
committerTom Ryder <tom@sanctum.geek.nz>2021-07-01 12:01:11 +1200
commit9d7aba3c6844d70f92ca2fa85f8f0b076c75c0ca (patch)
tree1029e95a21601c94521667ec58e4bb03eafb375b
parentMerge branch 'release/v0.16' (diff)
parentCorrect Changes file from previous release (diff)
downloadMusic-Lyrics-LRC-master.tar.gz
Music-Lyrics-LRC-master.zip
Merge branch 'hotfix/v0.17'HEADv0.17masterdevelop
* hotfix/v0.17: Correct Changes file from previous release
-rw-r--r--Changes10
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown2
-rw-r--r--lib/Music/Lyrics/LRC.pm4
-rw-r--r--t/basic.t2
-rw-r--r--t/load.t2
-rw-r--r--t/save.t2
7 files changed, 16 insertions, 8 deletions
diff --git a/Changes b/Changes
index 2675f45..bd67dc0 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,14 @@
Revision history for Music-Lyrics-LRC
-0.16 2018-03-05
+0.17 2021-07-01
+
+ - Fix botched Changes file for previous release...
+
+0.16 2021-07-01
+
+ - Update URLs in Makefile.PL
+
+0.15 2018-03-05
- Fix botched Changes file for previous release...
diff --git a/Makefile.PL b/Makefile.PL
index 1ec0797..c1cbd3e 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -28,7 +28,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Music::Lyrics::LRC' => {
- version => '0.16',
+ version => '0.17',
file => 'lib/Music/Lyrics/LRC.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 8a48866..7cdfc56 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Music::Lyrics::LRC - Manipulate LRC karaoke timed lyrics files
# VERSION
-Version 0.16
+Version 0.17
# DESCRIPTION
diff --git a/lib/Music/Lyrics/LRC.pm b/lib/Music/Lyrics/LRC.pm
index 1a2ffd6..d331426 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.16';
+our $VERSION = '0.17';
# 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.16
+Version 0.17
=head1 DESCRIPTION
diff --git a/t/basic.t b/t/basic.t
index 25bca29..ec19226 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.16';
+our $VERSION = '0.17';
my $lrc = Music::Lyrics::LRC->new();
ok( defined $lrc, 'constructed' );
diff --git a/t/load.t b/t/load.t
index a99ec79..421411f 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.16';
+our $VERSION = '0.17';
my $lrc = Music::Lyrics::LRC->new();
diff --git a/t/save.t b/t/save.t
index 949a43c..31cea59 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.16';
+our $VERSION = '0.17';
my $lrc = Music::Lyrics::LRC->new();
$lrc->set_tag( 'foo', 'bar' );