From 60230f2b006a6ece40b2b700110d2241ef65bf5d Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 24 Sep 2016 22:28:02 +0100 Subject: [PATCH] Bump version and update Changes --- Changes | 5 +++++ README | 2 +- lib/Audio/Opusfile.pm | 2 +- lib/Audio/Opusfile/Head.pm | 2 +- lib/Audio/Opusfile/PictureTag.pm | 2 +- lib/Audio/Opusfile/Tags.pm | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) 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) = @_; -- 2.30.2