From: Marius Gavrilescu Date: Sat, 17 Sep 2016 23:50:15 +0000 (+0100) Subject: Bump version and update Changes X-Git-Tag: 0.003^0 X-Git-Url: http://git.ieval.ro/?p=audio-opusfile.git;a=commitdiff_plain;h=f9bbe8963866129322920bf80b8e2675d84338b9 Bump version and update Changes --- diff --git a/Changes b/Changes index 8079574..1315b3d 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Audio::Opusfile. +0.003 2016-09-18T00:48+01:00 + - Add function to parse in-memory buffers + - Add function to test if a buffer looks like an Opus stream + - Export some other minor functions + 0.002001 2016-08-06T16:45-04:00 - Fix MANIFEST diff --git a/README b/README index 4807d71..3bbe7a2 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Audio-Opusfile version 0.001 +Audio-Opusfile version 0.003 ============================ Opus is a totally open, royalty-free, highly versatile audio codec. diff --git a/lib/Audio/Opusfile.pm b/lib/Audio/Opusfile.pm index d890005..bc91782 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.002001'; +our $VERSION = '0.003'; 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 53c8a2d..a35326c 100644 --- a/lib/Audio/Opusfile/PictureTag.pm +++ b/lib/Audio/Opusfile/PictureTag.pm @@ -6,7 +6,7 @@ use strict; use warnings; use subs qw/parse/; -our $VERSION = '0.002001'; +our $VERSION = '0.003'; sub new { parse $_[1] } diff --git a/lib/Audio/Opusfile/Tags.pm b/lib/Audio/Opusfile/Tags.pm index 8882baa..4e25805 100644 --- a/lib/Audio/Opusfile/Tags.pm +++ b/lib/Audio/Opusfile/Tags.pm @@ -6,7 +6,7 @@ use strict; use warnings; use subs qw/query query_count/; -our $VERSION = '0.002001'; +our $VERSION = '0.003'; sub query_all { my ($tags, $tag) = @_;