Skip to content

Commit

Permalink
Bumped version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbn committed Jun 29, 2017
1 parent b204718 commit ba7a46f
Show file tree
Hide file tree
Showing 34 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion 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 );
__PACKAGE__->mk_accessors( @FIELDS, @INTERNAL );

$Workflow::VERSION = '1.44';
$Workflow::VERSION = '1.45';

use constant NO_CHANGE_VALUE => 'NOCHANGE';

Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Action.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use Workflow::Validator::HasRequiredField;
use Workflow::Factory qw( FACTORY );
use Carp qw(croak);

$Workflow::Action::VERSION = '1.44';
$Workflow::Action::VERSION = '1.45';

my @PROPS = qw( name class description );
my @INTERNAL = qw( _factory );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Action::InputField::VERSION = '1.45';

my @PROPS = qw( name label description type requirement
source_class source_list class );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Action::Mailer::VERSION = '1.45';

sub execute {
my ($self) = @_;
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Action::Null::VERSION = '1.45';

sub execute {
my ($self) = @_;
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Base::VERSION = '1.45';

sub new {
my ( $class, @params ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Condition.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use base qw( Workflow::Base );
use Carp qw(croak);

$Workflow::Condition::VERSION = '1.44';
$Workflow::Condition::VERSION = '1.45';

my @FIELDS = qw( name class );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
our $VERSION = '1.45';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Condition::Evaluate::VERSION = '1.45';

my @FIELDS = qw( test );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
our $VERSION = '1.45';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Condition::HasUser::VERSION = '1.45';

my $DEFAULT_USER_KEY = 'current_user';

Expand Down
2 changes: 1 addition & 1 deletion 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.44';
our $VERSION = '1.45';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
our $VERSION = '1.45';

use base qw( Workflow::Condition::Nested );
use Workflow::Exception qw( condition_error configuration_error );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
our $VERSION = '1.45';

use base qw( Workflow::Condition );
use Workflow::Factory qw( FACTORY );
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Config::VERSION = '1.45';

# Map the valid type to the top-level XML tag or data
# structure to look for.
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Config::Perl::VERSION = '1.45';

sub parse {
my ( $self, $type, @items ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Config::XML::VERSION = '1.45';

my ($log);

Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Context::VERSION = '1.45';

sub merge {
my ( $self, $other ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::Factory::VERSION = '1.45';

# Extra action attribute validation is off by default for compatibility.
our $VALIDATE_ACTION_CONFIG = 0;
Expand Down
2 changes: 1 addition & 1 deletion 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.44';
$Workflow::History::VERSION = '1.45';

my @FIELDS
= qw( id workflow_id action description date user state time_zone );
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Workflow::Exception qw( persist_error );

use constant DEFAULT_ID_LENGTH => 8;

$Workflow::Persister::VERSION = '1.44';
$Workflow::Persister::VERSION = '1.45';

my @FIELDS = qw( name class
use_random use_uuid
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/DBI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use Workflow::Persister::DBI::SequenceId;
use Carp qw(croak);
use English qw( -no_match_vars );

$Workflow::Persister::DBI::VERSION = '1.44';
$Workflow::Persister::DBI::VERSION = '1.45';

my @FIELDS = qw( handle dsn user password driver
workflow_table history_table date_format parser autocommit);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/DBI/AutoGeneratedId.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use base qw( Class::Accessor );
use Log::Log4perl qw( get_logger );
use Workflow::Exception qw( configuration_error );

$Workflow::Persister::DBI::AutoGeneratedId::VERSION = '1.44';
$Workflow::Persister::DBI::AutoGeneratedId::VERSION = '1.45';

my @FIELDS = qw( from_handle handle_property func_property );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/DBI/ExtraData.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 persist_error );
use English qw( -no_match_vars );

$Workflow::Persister::DBI::ExtraData::VERSION = '1.44';
$Workflow::Persister::DBI::ExtraData::VERSION = '1.45';

my @FIELDS = qw( table data_field context_key );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/DBI/SequenceId.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( persist_error );
use English qw( -no_match_vars );

$Workflow::Persister::DBI::SequenceId::VERSION = '1.44';
$Workflow::Persister::DBI::SequenceId::VERSION = '1.45';

my @FIELDS = qw( sequence_name sequence_select );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Workflow::Persister::RandomId;
use File::Slurp qw(slurp);
use English qw( -no_match_vars );

$Workflow::Persister::File::VERSION = '1.44';
$Workflow::Persister::File::VERSION = '1.45';

my @FIELDS = qw( path );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/RandomId.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use constant DEFAULT_ID_LENGTH => 8;
use constant RANDOM_SEED => 26;
use constant CONSTANT_INCREMENT => 65;

$Workflow::Persister::RandomId::VERSION = '1.44';
$Workflow::Persister::RandomId::VERSION = '1.45';

my @FIELDS = qw( id_length );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/SPOPS.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 persist_error );
use English qw( -no_match_vars );

$Workflow::Persister::SPOPS::VERSION = '1.44';
$Workflow::Persister::SPOPS::VERSION = '1.45';

my @FIELDS = qw( workflow_class history_class );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Persister/UUID.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;
use strict;
use Data::UUID;

$Workflow::Persister::UUID::VERSION = '1.44';
$Workflow::Persister::UUID::VERSION = '1.45';

sub new {
my ( $class, $params ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/State.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Exception::Class;
use Workflow::Factory qw( FACTORY );
use English qw( -no_match_vars );

$Workflow::State::VERSION = '1.44';
$Workflow::State::VERSION = '1.45';

my @FIELDS = qw( state description type );
my @INTERNAL = qw( _test_condition_count _factory );
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Validator.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use base qw( Workflow::Base );
use Carp qw(croak);

$Workflow::Validator::VERSION = '1.44';
$Workflow::Validator::VERSION = '1.45';

my @FIELDS = qw( name class );
__PACKAGE__->mk_accessors(@FIELDS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Validator/HasRequiredField.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use base qw( Workflow::Validator );
use Workflow::Exception qw( validation_error );

$Workflow::Validator::HasRequiredField::VERSION = '1.44';
$Workflow::Validator::HasRequiredField::VERSION = '1.45';

sub validate {
my ( $self, $wf, @required_fields ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Validator/InEnumeratedType.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use base qw( Workflow::Validator );
use Workflow::Exception qw( configuration_error validation_error );

$Workflow::Validator::InEnumeratedType::VERSION = '1.44';
$Workflow::Validator::InEnumeratedType::VERSION = '1.45';

sub _init {
my ( $self, $params ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Workflow/Validator/MatchesDateFormat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Workflow::Exception qw( configuration_error validation_error );
use English qw( -no_match_vars );
use Carp qw(carp);

$Workflow::Validator::MatchesDateFormat::VERSION = '1.44';
$Workflow::Validator::MatchesDateFormat::VERSION = '1.45';

__PACKAGE__->mk_accessors('formatter');

Expand Down

0 comments on commit ba7a46f

Please sign in to comment.