diff --git a/Changelog b/Changelog index 9a8288c..0c5c987 100644 --- a/Changelog +++ b/Changelog @@ -15,6 +15,15 @@ High-level changelog Low-level changelog =================== +0.15.4 Tue Mar 27 18:42:58 CEST 2007 + - AM::Test more robust regarding fake mpd startup + - AM::Test quicker if no tests performed + - new methods in AM::Collection: + . songs_with_filename_partial() + . songs_by_artist_partial() + . songs_from_album_partial() + . songs_with_title_partial() + 0.15.3 Wed Mar 21 18:08:06 CET 2007 - requiring perl 5.8.x minimum diff --git a/META.yml b/META.yml index a38a69d..5d67a17 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- name: Audio-MPD -version: 0.15.3 +version: 0.15.4 author: - 'Jerome Quelin ' - |- @@ -22,7 +22,7 @@ build_requires: provides: Audio::MPD: file: lib/Audio/MPD.pm - version: 0.15.3 + version: 0.15.4 Audio::MPD::Collection: file: lib/Audio/MPD/Collection.pm Audio::MPD::Item: diff --git a/lib/Audio/MPD.pm b/lib/Audio/MPD.pm index d1044cb..7983541 100644 --- a/lib/Audio/MPD.pm +++ b/lib/Audio/MPD.pm @@ -30,7 +30,7 @@ use base qw[ Class::Accessor::Fast ]; __PACKAGE__->mk_accessors( qw[ _host _password _port collection version ] ); -our $VERSION = '0.15.3'; +our $VERSION = '0.15.4'; #--