Bump version and update Changes 0.003
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 17 Sep 2016 23:50:15 +0000 (00:50 +0100)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 17 Sep 2016 23:50:15 +0000 (00:50 +0100)
Changes
README
lib/Audio/Opusfile.pm
lib/Audio/Opusfile/PictureTag.pm
lib/Audio/Opusfile/Tags.pm

diff --git a/Changes b/Changes
index 8079574873ca71d7a8a5fd300f82776c5ea6e569..1315b3d879b11593e92650292ba9c85aa18cb0eb 100644 (file)
--- 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 4807d717171ea51ddf7da115719bf6fd590e7866..3bbe7a215b324deb965b6e3ac19e39107d92ff3e 100644 (file)
--- 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.
index d890005cbcca5e2e4e2ef9422b66008980ff65ce..bc917820c95a0c40a3ef3280a6b6ab406277a8c2 100644 (file)
@@ -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()
index 53c8a2da229e9d5e2d4d467cdb9e8f671bc18bdb..a35326ce2ef82744d9b884bd84d19cc70edea052 100644 (file)
@@ -6,7 +6,7 @@ use strict;
 use warnings;
 use subs qw/parse/;
 
-our $VERSION = '0.002001';
+our $VERSION = '0.003';
 
 sub new { parse $_[1] }
 
index 8882baab83a307abe48767e8403fd795195a0e86..4e25805e4faed988f85744789101d466896d073a 100644 (file)
@@ -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) = @_;
This page took 0.01428 seconds and 4 git commands to generate.