Skip to content

Commit

Permalink
Bump required version of List::AutoNumbered
Browse files Browse the repository at this point in the history
Fixes cpantesters failures
  • Loading branch information
cxw42 committed May 15, 2020
1 parent 3227d17 commit d9f6881
Show file tree
Hide file tree
Showing 29 changed files with 31 additions and 28 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Data-Hopen

0.000018 2020-05-14
- Fix dependencies (again) (cpantesters++)

0.000017 2020-05-09
- Fix dependencies
- No functional changes since 0.000016
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ my %opts = (
'Carp' => '0',
'Exporter' => '0',
'Import::Into' => '0',
'List::AutoNumbered' => '0.000006',
'List::AutoNumbered' => '0.000009', # for @{} overload
'Quote::Code' => '1.0102',
'rlib' => '0',
'Scalar::Util' => '0',
Expand Down
2 changes: 1 addition & 1 deletion cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on test => sub {
requires 'Carp';
requires 'Exporter';
requires 'Import::Into';
requires 'List::AutoNumbered', '0.000006';
requires 'List::AutoNumbered', '0.000009';
requires 'Quote::Code', '1.0102';
requires 'Scalar::Util';
requires 'Sub::Identify', '0.14';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Data::Hopen::Util::NameSet;
use Getargs::Mixed;
use Storable ();

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# Docs {{{1

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Base.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package Data::Hopen::Base;
use parent 'Exporter';
use Import::Into;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# Pragmas
use 5.014;
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Class.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use strict;
use warnings;
use Carp qw(croak);

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# No parent, so Class::Tiny will become the parent
use Class::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/CollectOp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::CollectOp;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Op';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/DAG.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::DAG;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Op';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Entity.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Data::Hopen::Base;
use overload;
use Scalar::Util qw(refaddr);

our $VERSION = '0.000017';
our $VERSION = '0.000018';

sub name;

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Goal.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::Goal;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Op';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/GraphBuilder.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Exporter 'import';

our @EXPORT; BEGIN { @EXPORT=qw(make_GraphBuilder); }

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use Class::Tiny {
name => 'ANON', # Name is optional; it's here so the
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Link.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::Link;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Runnable';
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/NoOp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::NoOp;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Op';
use Class::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Node.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

sub outputs;

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Op.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Node';
use Class::Tiny;
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/OutputOp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Data::Hopen::G::Op';
use Class::Tiny qw(output);
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/G/Runnable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::G::Runnable;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use Data::Hopen;
use Data::Hopen::Scope::Hash;
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/OrderedPredecessorGraph.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::OrderedPredecessorGraph;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Graph';

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Scope.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Data::Hopen::Base;
use Exporter 'import';
use Scalar::Util qw(refaddr);

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# Class definition
use Class::Tiny {
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Scope/Environment.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package Data::Hopen::Scope::Environment;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use Data::Hopen::Scope qw(:default :internal);
use parent 'Data::Hopen::Scope';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Scope/Hash.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::Scope::Hash;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use Data::Hopen::Scope qw(:default :internal);
use parent 'Data::Hopen::Scope';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Scope/Inputs.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# TODO if a class
use parent 'Data::Hopen::Scope';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Scope/Overrides.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# TODO if using exporter
use parent 'Exporter';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/TEMPLATE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# TODO if using exporter
use parent 'Exporter';
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Util/Data.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Exporter';
our (@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Util/Filename.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::Util::Filename;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use parent 'Exporter';
our (@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Util/MergeWithoutCloneBlessed.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use 5.014;
use Carp qw(croak);

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use base 'Hash::Merge'; # since `base` is what Hash::Merge uses
use Clone::Choose 0.008; # also from Hash::Merge
Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Util/NameSet.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::Util::NameSet;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

# Docs {{{1

Expand Down
2 changes: 1 addition & 1 deletion lib/Data/Hopen/Visitor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Data::Hopen::Visitor;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000017';
our $VERSION = '0.000018';

use Class::Tiny;

Expand Down

0 comments on commit d9f6881

Please sign in to comment.