From: Marius Gavrilescu Date: Sat, 20 Aug 2016 14:38:02 +0000 (-0400) Subject: Bump version and update Changes X-Git-Tag: 1.001_001^0 X-Git-Url: http://git.ieval.ro/?p=app-musicexpo.git;a=commitdiff_plain;h=17c8e5f607f576c8762858da54c8663e7d9bd7d0 Bump version and update Changes --- diff --git a/Changes b/Changes index d1659e1..93c5ac0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension App::MusicExpo. +1.001_001 2016-08-20T10:38-04:00 + - Implement opus using Audio::Opusfile + - Next stable version should make all tag parsing libraries optional + 1.001_000 2016-07-22T23:39-04:00 - Implement opus badly (by calling opusinfo) - Next version should use libopusinfo diff --git a/README b/README index 752ff5b..42debf7 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -App-MusicExpo version 1.001_000 +App-MusicExpo version 1.001_001 =============================== App::MusicExpo creates a HTML table from a list of songs. @@ -28,6 +28,7 @@ DEPENDENCIES This module requires these other modules and libraries: * Audio::FLAC::Header + * Audio::Opusfile * HTML::Template::Compiled * MP3::Info * MP4::Info diff --git a/lib/App/MusicExpo.pm b/lib/App/MusicExpo.pm index 3f8bc42..c1433ca 100644 --- a/lib/App/MusicExpo.pm +++ b/lib/App/MusicExpo.pm @@ -3,7 +3,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '1.001_000'; +our $VERSION = '1.001_001'; use Audio::FLAC::Header qw//; use HTML::Template::Compiled qw//;