From: Simon Wistow Date: Wed, 10 Dec 2008 20:15:44 +0000 (+0000) Subject: Gte ready for release X-Git-Tag: v0.41~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FXML-Feed.git;a=commitdiff_plain;h=a759e13e9967617e9ad06e2b493987ce491d6d26 Gte ready for release --- diff --git a/Changes b/Changes index 9703122..bc38ccb 100644 --- a/Changes +++ b/Changes @@ -3,7 +3,9 @@ Revision history for XML::Feed 0.41 - - Add handling for multiple categories/tags + - Add handling for multiple categories/tags, including + patch from Shlomi Fish (SHLOMIF) + http://rt.cpan.org/Ticket/Display.html?id=41396 - Force v1.40 of XML::RSS to get proper multiple category support 0.40 diff --git a/lib/XML/Feed.pm b/lib/XML/Feed.pm index 99ef0f7..bc1bf57 100644 --- a/lib/XML/Feed.pm +++ b/lib/XML/Feed.pm @@ -12,7 +12,7 @@ use Module::Pluggable search_path => "XML::Feed::Format", require => 1, sub_name => 'formatters'; -our $VERSION = '0.40'; +our $VERSION = '0.41'; our @formatters; BEGIN { @formatters = __PACKAGE__->formatters; diff --git a/lib/XML/Feed/Entry.pm b/lib/XML/Feed/Entry.pm index 78e8da1..f2fadb2 100644 --- a/lib/XML/Feed/Entry.pm +++ b/lib/XML/Feed/Entry.pm @@ -131,6 +131,9 @@ The category in which the entry was posted. Returns a list of categories if called in array context or the first category if called in scalar context. +B It's possible this API might change to have an +I instead. + =head2 $entry->tags([ $tag ]) A synonym for I;