Skip to content

Commit

Permalink
release v0.012
Browse files Browse the repository at this point in the history
    [Fixed]

    - Beam::Minion now supports Minion 8
  • Loading branch information
preaction committed Dec 5, 2017
1 parent 25cf9a2 commit 9199d18
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Changelog for Beam-Minion

{{ $NEXT }}

[Fixed]

- Beam::Minion now supports Minion 8

0.011 2017-09-19 15:18:44-05:00 America/Chicago

[Fixed]
Expand Down
20 changes: 10 additions & 10 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Doug Bell <preaction@cpan.org>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Zilla version 6.010, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -34,7 +34,7 @@
"Beam::Runner" : "0.014",
"Beam::Wire" : "1.019",
"Getopt::Long" : "2.36",
"Minion" : "0",
"Minion" : "8",
"Module::Runtime" : "0",
"Mojolicious" : "7",
"perl" : "5.010"
Expand All @@ -49,7 +49,7 @@
"File::Spec" : "0",
"IO::Handle" : "0",
"IPC::Open3" : "0",
"Minion::Backend::SQLite" : "0",
"Minion::Backend::SQLite" : "3.001",
"Mock::MonkeyPatch" : "0",
"Mojo::SQLite" : "2.002",
"Test::Fatal" : "0",
Expand All @@ -61,27 +61,27 @@
"provides" : {
"Beam::Minion" : {
"file" : "lib/Beam/Minion.pm",
"version" : "0.011"
"version" : "0.012"
},
"Beam::Minion::Command::job" : {
"file" : "lib/Beam/Minion/Command/job.pm",
"version" : "0.011"
"version" : "0.012"
},
"Beam::Minion::Command::run" : {
"file" : "lib/Beam/Minion/Command/run.pm",
"version" : "0.011"
"version" : "0.012"
},
"Beam::Minion::Command::worker" : {
"file" : "lib/Beam/Minion/Command/worker.pm",
"version" : "0.011"
"version" : "0.012"
},
"Beam::Minion::Util" : {
"file" : "lib/Beam/Minion/Util.pm",
"version" : "0.011"
"version" : "0.012"
},
"Beam::Runner::Command::minion" : {
"file" : "lib/Beam/Runner/Command/minion.pm",
"version" : "0.011"
"version" : "0.012"
}
},
"release_status" : "stable",
Expand All @@ -96,7 +96,7 @@
"web" : "https://github.com/preaction/Beam-Minion"
}
},
"version" : "0.011",
"version" : "0.012",
"x_authority" : "cpan:PREACTION",
"x_contributors" : [
"Mohammad S Anwar <mohammad.anwar@yahoo.com>"
Expand Down
10 changes: 5 additions & 5 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.010.
use strict;
use warnings;

Expand All @@ -20,7 +20,7 @@ my %WriteMakefileArgs = (
"Beam::Runner" => "0.014",
"Beam::Wire" => "1.019",
"Getopt::Long" => "2.36",
"Minion" => 0,
"Minion" => 8,
"Module::Runtime" => 0,
"Mojolicious" => 7
},
Expand All @@ -29,7 +29,7 @@ my %WriteMakefileArgs = (
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Minion::Backend::SQLite" => 0,
"Minion::Backend::SQLite" => "3.001",
"Mock::MonkeyPatch" => 0,
"Mojo::SQLite" => "2.002",
"Test::Fatal" => 0,
Expand All @@ -51,8 +51,8 @@ my %FallbackPrereqs = (
"Getopt::Long" => "2.36",
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Minion" => 0,
"Minion::Backend::SQLite" => 0,
"Minion" => 8,
"Minion::Backend::SQLite" => "3.001",
"Mock::MonkeyPatch" => 0,
"Module::Runtime" => 0,
"Mojo::SQLite" => "2.002",
Expand Down
2 changes: 1 addition & 1 deletion README.mkdn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Beam::Minion - A distributed task runner for Beam::Wire containers

# VERSION

version 0.011
version 0.012

# STATUS

Expand Down
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
requires "Beam::Runner" => "0.014";
requires "Beam::Wire" => "1.019";
requires "Getopt::Long" => "2.36";
requires "Minion" => "0";
requires "Minion" => "8";
requires "Module::Runtime" => "0";
requires "Mojolicious" => "7";
requires "perl" => "5.010";
Expand All @@ -11,7 +11,7 @@ on 'test' => sub {
requires "File::Spec" => "0";
requires "IO::Handle" => "0";
requires "IPC::Open3" => "0";
requires "Minion::Backend::SQLite" => "0";
requires "Minion::Backend::SQLite" => "3.001";
requires "Mock::MonkeyPatch" => "0";
requires "Mojo::SQLite" => "2.002";
requires "Test::Fatal" => "0";
Expand Down

0 comments on commit 9199d18

Please sign in to comment.