Skip to content

Commit 332ce0a

Browse files
committed
Prep for release
1 parent d4cee89 commit 332ce0a

File tree

10 files changed

+15
-9
lines changed

10 files changed

+15
-9
lines changed

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [0.63] - 2021-05-25
8+
9+
### Fixed
10+
11+
* Fixed a bug with non-UTC time zones (thanks @nanto)
12+
713
## [0.62] - 2021-05-24
814

915
### Fixed

lib/XML/Feed.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use Module::Pluggable search_path => "XML::Feed::Format",
1313
require => 1,
1414
sub_name => 'formatters';
1515

16-
our $VERSION = '0.62';
16+
our $VERSION = '0.63';
1717
our $MULTIPLE_ENCLOSURES = 0;
1818
our @formatters;
1919
BEGIN {

lib/XML/Feed/Content.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package XML::Feed::Content;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.62';
5+
our $VERSION = '0.63';
66

77
use base qw( Class::ErrorHandler );
88

lib/XML/Feed/Enclosure.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package XML::Feed::Enclosure;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.62';
5+
our $VERSION = '0.63';
66

77
use base qw( Class::ErrorHandler );
88

lib/XML/Feed/Entry.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use v5.10;
55

6-
our $VERSION = '0.62';
6+
our $VERSION = '0.63';
77

88
use base qw( Class::ErrorHandler );
99

lib/XML/Feed/Entry/Format/Atom.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use v5.10;
55

6-
our $VERSION = '0.62';
6+
our $VERSION = '0.63';
77

88
use base qw( XML::Feed::Entry );
99
use XML::Feed::Content;

lib/XML/Feed/Entry/Format/RSS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use v5.10;
55

6-
our $VERSION = '0.62';
6+
our $VERSION = '0.63';
77

88
sub format { 'RSS ' . $_[0]->{'_version'} }
99

lib/XML/Feed/Format/Atom.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use v5.10;
55

6-
our $VERSION = '0.62';
6+
our $VERSION = '0.63';
77

88
use base qw( XML::Feed );
99
use XML::Atom::Feed;

lib/XML/Feed/Format/RSS.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use v5.10;
55

6-
our $VERSION = '0.62';
6+
our $VERSION = '0.63';
77

88
use base qw( XML::Feed );
99
use DateTime::Format::Mail;

lib/XML/Feed/Util.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package XML::Feed::Util;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.62';
5+
our $VERSION = '0.63';
66

77
use base qw( Exporter );
88
use DateTime::Format::Flexible;

0 commit comments

Comments
 (0)