Skip to content

Commit

Permalink
Prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Jan 28, 2021
1 parent fca6557 commit d9c5401
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.61] - 2021-01-28

### Fixed

* Reformated Build.PL

## [0.60] - 2021-01-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Module::Pluggable search_path => "XML::Feed::Format",
require => 1,
sub_name => 'formatters';

our $VERSION = '0.60';
our $VERSION = '0.61';
our $MULTIPLE_ENCLOSURES = 0;
our @formatters;
BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Content.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package XML::Feed::Content;
use strict;
use warnings;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( Class::ErrorHandler );

Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Enclosure.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package XML::Feed::Enclosure;
use strict;
use warnings;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( Class::ErrorHandler );

Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Entry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use v5.10;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( Class::ErrorHandler );

Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Entry/Format/Atom.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use v5.10;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( XML::Feed::Entry );
use XML::Feed::Content;
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Entry/Format/RSS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use v5.10;

our $VERSION = '0.60';
our $VERSION = '0.61';

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

Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Format/Atom.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use v5.10;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( XML::Feed );
use XML::Atom::Feed;
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Format/RSS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use warnings;
use v5.10;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( XML::Feed );
use DateTime::Format::Mail;
Expand Down
2 changes: 1 addition & 1 deletion lib/XML/Feed/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package XML::Feed::Util;
use strict;
use warnings;

our $VERSION = '0.60';
our $VERSION = '0.61';

use base qw( Exporter );
use DateTime::Format::Flexible;
Expand Down

0 comments on commit d9c5401

Please sign in to comment.