Bump version and update Changes 0.002
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 6 Aug 2016 20:43:48 +0000 (16:43 -0400)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 6 Aug 2016 20:43:48 +0000 (16:43 -0400)
Changes
lib/Audio/Opusfile.pm
lib/Audio/Opusfile/PictureTag.pm
lib/Audio/Opusfile/Tags.pm

diff --git a/Changes b/Changes
index 3a48939a560c63f0908939fb47140b8e6a3f6f78..2b7de90ff1bb16ec4eba50de9768d568caf320c4 100644 (file)
--- 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
index 0612416f24f17d729b24df26e87acca2b48bee06..0a6a2d44ffcd6a48ab662d4d739ca1500726fb23 100644 (file)
@@ -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()
index 609e614c99756db05c1c1cc5e4523018c842c35d..3a9fd547567468738879b3527e089449912b39a7 100644 (file)
@@ -6,6 +6,8 @@ use strict;
 use warnings;
 use subs qw/parse/;
 
+our $VERSION = '0.002';
+
 sub new { parse $_[1] }
 
 1;
index a65ed954b49b6120674bd1b97acde1c7d81f6e87..850053ff700b05d7ab088c5fd0444cc7f46406ab 100644 (file)
@@ -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);
This page took 0.013189 seconds and 4 git commands to generate.