diff --git a/ChangeLog.md b/ChangeLog.md index 396cda5..29cb0a2 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.65] - 2024-07-08 + +### Fixed + +* Packaging errors in version 0.64 (thanks @perlpunk for spotting them) + ## [0.64] - 2024-07-07 ### Added diff --git a/lib/XML/Feed.pm b/lib/XML/Feed.pm index f3b6b91..5749a95 100644 --- a/lib/XML/Feed.pm +++ b/lib/XML/Feed.pm @@ -13,7 +13,7 @@ use Module::Pluggable search_path => "XML::Feed::Format", require => 1, sub_name => 'formatters'; -our $VERSION = '0.64'; +our $VERSION = '0.65'; our $MULTIPLE_ENCLOSURES = 0; our @formatters; BEGIN { diff --git a/lib/XML/Feed/Content.pm b/lib/XML/Feed/Content.pm index 3363eef..a4b000a 100644 --- a/lib/XML/Feed/Content.pm +++ b/lib/XML/Feed/Content.pm @@ -2,7 +2,7 @@ package XML::Feed::Content; use strict; use warnings; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( Class::ErrorHandler ); diff --git a/lib/XML/Feed/Enclosure.pm b/lib/XML/Feed/Enclosure.pm index d3b6f9f..3c69a35 100644 --- a/lib/XML/Feed/Enclosure.pm +++ b/lib/XML/Feed/Enclosure.pm @@ -2,7 +2,7 @@ package XML::Feed::Enclosure; use strict; use warnings; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( Class::ErrorHandler ); diff --git a/lib/XML/Feed/Entry.pm b/lib/XML/Feed/Entry.pm index 7358b52..23e06d6 100644 --- a/lib/XML/Feed/Entry.pm +++ b/lib/XML/Feed/Entry.pm @@ -3,7 +3,7 @@ use strict; use warnings; use v5.10; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( Class::ErrorHandler ); diff --git a/lib/XML/Feed/Entry/Format/Atom.pm b/lib/XML/Feed/Entry/Format/Atom.pm index 2da5445..92b80d8 100644 --- a/lib/XML/Feed/Entry/Format/Atom.pm +++ b/lib/XML/Feed/Entry/Format/Atom.pm @@ -3,7 +3,7 @@ use strict; use warnings; use v5.10; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( XML::Feed::Entry ); use XML::Feed::Content; diff --git a/lib/XML/Feed/Entry/Format/RSS.pm b/lib/XML/Feed/Entry/Format/RSS.pm index 1735651..2901abb 100644 --- a/lib/XML/Feed/Entry/Format/RSS.pm +++ b/lib/XML/Feed/Entry/Format/RSS.pm @@ -3,7 +3,7 @@ use strict; use warnings; use v5.10; -our $VERSION = '0.63'; +our $VERSION = '0.65'; sub format { 'RSS ' . $_[0]->{'_version'} } diff --git a/lib/XML/Feed/Format/Atom.pm b/lib/XML/Feed/Format/Atom.pm index 7915ff7..89a7f73 100644 --- a/lib/XML/Feed/Format/Atom.pm +++ b/lib/XML/Feed/Format/Atom.pm @@ -3,7 +3,7 @@ use strict; use warnings; use v5.10; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( XML::Feed ); use XML::Atom::Feed; diff --git a/lib/XML/Feed/Format/RSS.pm b/lib/XML/Feed/Format/RSS.pm index 518a691..3fabaa2 100644 --- a/lib/XML/Feed/Format/RSS.pm +++ b/lib/XML/Feed/Format/RSS.pm @@ -3,7 +3,7 @@ use strict; use warnings; use v5.10; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( XML::Feed ); use DateTime::Format::Mail; diff --git a/lib/XML/Feed/Util.pm b/lib/XML/Feed/Util.pm index ee7cde5..38ded02 100644 --- a/lib/XML/Feed/Util.pm +++ b/lib/XML/Feed/Util.pm @@ -2,7 +2,7 @@ package XML::Feed::Util; use strict; use warnings; -our $VERSION = '0.63'; +our $VERSION = '0.65'; use base qw( Exporter ); use DateTime::Format::Flexible;