Skip to content

Commit

Permalink
Bumped version number from 1.60 to 1.61
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Oct 1, 2022
1 parent c451c87 commit 23cff0c
Show file tree
Hide file tree
Showing 36 changed files with 73 additions and 73 deletions.
4 changes: 2 additions & 2 deletions lib/Workflow.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ my @FIELDS = qw( id type description state last_update time_zone );
my @INTERNAL = qw( _factory _observers );
__PACKAGE__->mk_accessors( @FIELDS, @INTERNAL );

$Workflow::VERSION = '1.60';
$Workflow::VERSION = '1.61';

use constant NO_CHANGE_VALUE => 'NOCHANGE';

Expand Down Expand Up @@ -373,7 +373,7 @@ Workflow - Simple, flexible system to implement workflows
=head1 VERSION
This documentation describes version 1.60 of Workflow
This documentation describes version 1.61 of Workflow
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Action.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Workflow::Validator::HasRequiredField;
use Workflow::Factory qw( FACTORY );
use Carp qw(croak);

$Workflow::Action::VERSION = '1.60';
$Workflow::Action::VERSION = '1.61';

my @PROPS = qw( name class description group );
my @INTERNAL = qw( _factory );
Expand Down Expand Up @@ -167,7 +167,7 @@ Workflow::Action - Base class for Workflow actions
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Action/InputField.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );
use English qw( -no_match_vars );

$Workflow::Action::InputField::VERSION = '1.60';
$Workflow::Action::InputField::VERSION = '1.61';

my @PROPS = qw( name label description type requirement
source_class source_list class );
Expand Down Expand Up @@ -121,7 +121,7 @@ Workflow::Action::InputField - Metadata about information required by an Action
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Action/Mailer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use strict;
use base qw( Workflow::Action );

$Workflow::Action::Mailer::VERSION = '1.60';
$Workflow::Action::Mailer::VERSION = '1.61';

sub execute {
my ($self) = @_;
Expand All @@ -23,7 +23,7 @@ Workflow::Action::Mailer - a stub for a SMTP capable action
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Action/Null.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use strict;
use base qw( Workflow::Action );

$Workflow::Action::Null::VERSION = '1.60';
$Workflow::Action::Null::VERSION = '1.61';

sub execute {
my ($self) = @_;
Expand All @@ -23,7 +23,7 @@ Workflow::Action::Null - Workflow action for the terminally lazy
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use strict;
use base qw( Class::Accessor );
use Log::Log4perl;
$Workflow::Base::VERSION = '1.60';
$Workflow::Base::VERSION = '1.61';

sub new {
my ( $class, @params ) = @_;
Expand Down Expand Up @@ -96,7 +96,7 @@ Workflow::Base - Base class with constructor
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( workflow_error condition_error );

$Workflow::Condition::CACHE_RESULTS = 1;
$Workflow::Condition::VERSION = '1.60';
$Workflow::Condition::VERSION = '1.61';

my $log;
my @FIELDS = qw( name class );
Expand Down Expand Up @@ -118,7 +118,7 @@ Workflow::Condition - Evaluate a condition depending on the workflow state and e
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/CheckReturn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::CheckReturn;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down Expand Up @@ -90,7 +90,7 @@ Workflow::Condition::CheckReturn
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/Evaluate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Safe;
use Workflow::Exception qw( condition_error configuration_error );
use English qw( -no_match_vars );

$Workflow::Condition::Evaluate::VERSION = '1.60';
$Workflow::Condition::Evaluate::VERSION = '1.61';

my @FIELDS = qw( test );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down Expand Up @@ -68,7 +68,7 @@ Workflow::Condition::Evaluate - Inline condition that evaluates perl code for tr
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/GreedyOR.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::GreedyOR;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down Expand Up @@ -57,7 +57,7 @@ Workflow::Condition::GreedyOR
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/HasUser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use base qw( Workflow::Condition );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( condition_error );

$Workflow::Condition::HasUser::VERSION = '1.60';
$Workflow::Condition::HasUser::VERSION = '1.61';

my $DEFAULT_USER_KEY = 'current_user';

Expand Down Expand Up @@ -41,7 +41,7 @@ Workflow::Condition::HasUser - Condition to determine if a user is available
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/LazyAND.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::LazyAND;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down Expand Up @@ -57,7 +57,7 @@ Workflow::Condition::LazyAND
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/LazyOR.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::LazyOR;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down Expand Up @@ -55,7 +55,7 @@ Workflow::Condition::LazyOR
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/Negated.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::Negated;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition );

Expand Down Expand Up @@ -36,7 +36,7 @@ Workflow::Condition::Negated - Negate workflow condition result
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Condition/Nested.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Workflow::Condition::Nested;
use strict;
use warnings;

our $VERSION = '1.60';
our $VERSION = '1.61';

use base qw( Workflow::Condition );

Expand All @@ -19,7 +19,7 @@ Workflow::Condition::Nested - Evaluate nested workflow conditions
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Config.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Data::Dumper qw( Dumper );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );

$Workflow::Config::VERSION = '1.60';
$Workflow::Config::VERSION = '1.61';

# Map the valid type to the top-level XML tag or data
# structure to look for.
Expand Down Expand Up @@ -114,7 +114,7 @@ Workflow::Config - Parse configuration files for the workflow components
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Config/Perl.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Workflow::Exception qw( configuration_error );
use Data::Dumper qw( Dumper );
use English qw( -no_match_vars );

$Workflow::Config::Perl::VERSION = '1.60';
$Workflow::Config::Perl::VERSION = '1.61';

sub parse {
my ( $self, $type, @items ) = @_;
Expand Down Expand Up @@ -104,7 +104,7 @@ Workflow::Config::Perl - Parse workflow configurations as Perl data structures
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Config/XML.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Workflow::Exception qw( configuration_error );
use Carp qw(croak);
use English qw( -no_match_vars );

$Workflow::Config::XML::VERSION = '1.60';
$Workflow::Config::XML::VERSION = '1.61';

my ($log);

Expand Down Expand Up @@ -107,7 +107,7 @@ Workflow::Config::XML - Parse workflow configurations from XML content
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Context.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use strict;
use base qw( Workflow::Base );

$Workflow::Context::VERSION = '1.60';
$Workflow::Context::VERSION = '1.61';


sub init {
Expand Down Expand Up @@ -35,7 +35,7 @@ Workflow::Context - Data blackboard for Workflows, Actions, Conditions and Valid
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ my %TYPE_LOGGING = (
);


$Workflow::Exception::VERSION = '1.60';
$Workflow::Exception::VERSION = '1.61';
@Workflow::Exception::ISA = qw( Exporter Exception::Class::Base );
@Workflow::Exception::EXPORT_OK = keys %TYPE_CLASSES;

Expand Down Expand Up @@ -129,7 +129,7 @@ Workflow::Exception - Base class for workflow exceptions
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/Factory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error workflow_error );
use Carp qw(croak);
use English qw( -no_match_vars );
$Workflow::Factory::VERSION = '1.60';
$Workflow::Factory::VERSION = '1.61';

# Extra action attribute validation is off by default for compatibility.
our $VALIDATE_ACTION_CONFIG = 0;
Expand Down Expand Up @@ -813,7 +813,7 @@ Workflow::Factory - Generates new workflow and supporting objects
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Workflow/History.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use base qw( Class::Accessor );
use DateTime;

$Workflow::History::VERSION = '1.60';
$Workflow::History::VERSION = '1.61';

my @FIELDS
= qw( id workflow_id action description date user state time_zone );
Expand Down Expand Up @@ -66,7 +66,7 @@ Workflow::History - Recorded work on a workflow action or workflow itself
=head1 VERSION
This documentation describes version 1.60 of this package
This documentation describes version 1.61 of this package
=head1 SYNOPSIS
Expand Down

0 comments on commit 23cff0c

Please sign in to comment.