Skip to content

Commit

Permalink
pre release version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmanto committed Jan 18, 2024
1 parent 06fb12b commit e659ffc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{{$NEXT}}

- update dependences (mainly [email protected])

0.033 2021-02-25T20:50:55Z

- fix windows workflow (github)
Expand Down
12 changes: 6 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Daniel Mantovani, C<[email protected]>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.1.10, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Minilla/v3.1.23, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -43,14 +43,14 @@
"runtime" : {
"requires" : {
"Algorithm::Cron" : "0.10",
"Mojolicious" : "7.82",
"Mojolicious" : "9.35",
"perl" : "5.020001"
}
},
"test" : {
"requires" : {
"Test2::V0" : "0.000114",
"Test::Mock::Time" : "v0.1.7"
"Test2::V0" : "0.000159",
"Test::Mock::Time" : "v0.2.1"
}
}
},
Expand All @@ -62,7 +62,7 @@
"homepage" : "https://github.com/dmanto/Mojolicious-Plugin-Cron",
"repository" : {
"type" : "git",
"url" : "git://github.com/dmanto/Mojolicious-Plugin-Cron.git",
"url" : "https://github.com/dmanto/Mojolicious-Plugin-Cron.git",
"web" : "https://github.com/dmanto/Mojolicious-Plugin-Cron"
}
},
Expand All @@ -75,6 +75,6 @@
"Sébastien Feugère <[email protected]>",
"vagrant <[email protected]>"
],
"x_serialization_backend" : "JSON::PP version 4.02",
"x_serialization_backend" : "JSON::PP version 4.07",
"x_static_install" : 1
}
6 changes: 3 additions & 3 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
requires 'perl', '5.020001';
requires 'Mojolicious', '7.82'; # tested versions
requires 'Mojolicious', '9.35';
requires 'Algorithm::Cron', '0.10';

on test => sub {
requires 'Test2::V0', '0.000114';
requires 'Test::Mock::Time', '0.1.7';
requires 'Test2::V0', '0.000159';
requires 'Test::Mock::Time', '0.2.1';
}
2 changes: 1 addition & 1 deletion lib/Mojolicious/Plugin/Cron.pm
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sub _cron {
if (-e $dat && $dat->slurp // '') =~ /(\d+)/; # do some untainting
$rtime //= '0';
if ($rtime != $time) {
$dat->spurt($time);
$dat->spew($time);
$fire = 1;
}
undef $dat;
Expand Down

0 comments on commit e659ffc

Please sign in to comment.