Skip to content

Commit

Permalink
Non-TRIAL release
Browse files Browse the repository at this point in the history
Also, remove bin/hopen, which should have been removed long ago.
  • Loading branch information
cxw42 committed May 10, 2020
1 parent 98ef345 commit 3227d17
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 34 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Data-Hopen

0.000017 2020-05-09
- Fix dependencies
- No functional changes since 0.000016

0.000016 2020-05-09 (TRIAL RELEASE)
- cpanfile now provided for easier installation of dependencies
- An edge can have multiple links, and they run in sequence
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
bin/hopen
Changes
cpanfile
lib/Data/Hopen.pm
Expand Down
7 changes: 0 additions & 7 deletions bin/hopen

This file was deleted.

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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

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'; # TRIAL
our $VERSION = '0.000017';

# 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'; # TRIAL
our $VERSION = '0.000017';

use Class::Tiny;

Expand Down

0 comments on commit 3227d17

Please sign in to comment.