From: Marius Gavrilescu Date: Sat, 24 Sep 2016 21:28:02 +0000 (+0100) Subject: Bump version and update Changes X-Git-Tag: 0.004^0 X-Git-Url: http://git.ieval.ro/?p=audio-opusfile.git;a=commitdiff_plain;h=60230f2b006a6ece40b2b700110d2241ef65bf5d Bump version and update Changes --- diff --git a/Changes b/Changes index 1315b3d..bb65fff 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Audio::Opusfile. +0.004 2016-09-25T00:28+03:00 + - Add Audio::Opusfile::Head module for extracting Opus header information + - Export more functions for obtaining information about a stream + - Simplify typemap + 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 diff --git a/README b/README index 6605add..c5f923a 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Audio-Opusfile version 0.003 +Audio-Opusfile version 0.004 ============================ Opus is a totally open, royalty-free, highly versatile audio codec. diff --git a/lib/Audio/Opusfile.pm b/lib/Audio/Opusfile.pm index b11ed42..c17306b 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.003'; +our $VERSION = '0.004'; sub AUTOLOAD { # This AUTOLOAD is used to 'autoload' constants from the constant() diff --git a/lib/Audio/Opusfile/Head.pm b/lib/Audio/Opusfile/Head.pm index a7c5877..4f30de2 100644 --- a/lib/Audio/Opusfile/Head.pm +++ b/lib/Audio/Opusfile/Head.pm @@ -5,7 +5,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '0.003'; +our $VERSION = '0.004'; 1; __END__ diff --git a/lib/Audio/Opusfile/PictureTag.pm b/lib/Audio/Opusfile/PictureTag.pm index a35326c..3f33a52 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.003'; +our $VERSION = '0.004'; sub new { parse $_[1] } diff --git a/lib/Audio/Opusfile/Tags.pm b/lib/Audio/Opusfile/Tags.pm index 4e25805..7eca407 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.003'; +our $VERSION = '0.004'; sub query_all { my ($tags, $tag) = @_;