The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Makerelease::Step::Informational;

use strict;
use Makerelease::Step;

our $VERSION = '0.1';

our @ISA=qw(Makerelease::Step);

sub step {
    my ($self, $step, $parentstep, $counter) = @_;

    # step does nothing other than print things already handled by the parent
    return;
}

1;