From 6116de10147a6c5f9682c5927e947564e20bace9 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 6 Aug 2016 16:43:48 -0400 Subject: [PATCH] Bump version and update Changes --- Changes | 5 +++++ lib/Audio/Opusfile.pm | 2 +- lib/Audio/Opusfile/PictureTag.pm | 2 ++ lib/Audio/Opusfile/Tags.pm | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 3a48939..2b7de90 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,9 @@ Revision history for Perl extension Audio::Opusfile. +0.002 2016-08-06T16:43-04:00 + - Add /usr/local/include/opus to include path (RT #116603) + - Add support for parsing METADATA_BLOCK_PICTURE tags + - Add (undocumented) support for getting opus header information. + 0.001 2016-07-30T13:43-04:00 - Initial release diff --git a/lib/Audio/Opusfile.pm b/lib/Audio/Opusfile.pm index 0612416..0a6a2d4 100644 --- a/lib/Audio/Opusfile.pm +++ b/lib/Audio/Opusfile.pm @@ -46,7 +46,7 @@ my @constants = our @EXPORT_OK = @constants; our @EXPORT = @constants; -our $VERSION = '0.001'; +our $VERSION = '0.002'; sub AUTOLOAD { # This AUTOLOAD is used to 'autoload' constants from the constant() diff --git a/lib/Audio/Opusfile/PictureTag.pm b/lib/Audio/Opusfile/PictureTag.pm index 609e614..3a9fd54 100644 --- a/lib/Audio/Opusfile/PictureTag.pm +++ b/lib/Audio/Opusfile/PictureTag.pm @@ -6,6 +6,8 @@ use strict; use warnings; use subs qw/parse/; +our $VERSION = '0.002'; + sub new { parse $_[1] } 1; diff --git a/lib/Audio/Opusfile/Tags.pm b/lib/Audio/Opusfile/Tags.pm index a65ed95..850053f 100644 --- a/lib/Audio/Opusfile/Tags.pm +++ b/lib/Audio/Opusfile/Tags.pm @@ -6,6 +6,8 @@ use strict; use warnings; use subs qw/query query_count/; +our $VERSION = '0.002'; + sub query_all { my ($tags, $tag) = @_; my $count = $tags->query_count($tag); -- 2.30.2