Skip to content

Commit

Permalink
Backport 1219ff9 (require minimum Perl version v5.14)
Browse files Browse the repository at this point in the history
Manually backported due to merge conflicts.
  • Loading branch information
ehuelsmann committed Jan 27, 2022
1 parent 574e194 commit 4ab9368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Workflow.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Workflow;

use warnings;
use strict;
use 5.006; # warnings
use v5.14.0; # warnings
use base qw( Workflow::Base );
use Log::Log4perl qw( get_logger );
use Workflow::Context;
Expand Down
2 changes: 1 addition & 1 deletion t/TestApp/CustomWorkflow.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package TestApp::CustomWorkflow;

use warnings;
use strict;
use 5.006;
use v5.14.0;
use base qw( Workflow );

$TestApp::CustomWorkflow::VERSION = '0.01';
Expand Down

0 comments on commit 4ab9368

Please sign in to comment.