Skip to content

Commit

Permalink
Bump version to 0.0000015
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris White committed Jun 4, 2019
1 parent 5072c23 commit ce44c48
Show file tree
Hide file tree
Showing 27 changed files with 29 additions and 25 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.000015 2019-06-04
- No changes - stable release of 0.000014

0.000014 2019-05-30 (TRIAL RELEASE)
- Added Data::Hopen::G::GraphBuilder::to()
- Fix test failures on earlier Perl versions
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ t/999-extras-for-coverage.t
t/lib/HopenTest.pm
t/lib/PackagesInThisFile.pm
xt/boilerplate.t
xt/kwalitee.t
xt/manifest.t
xt/pod-coverage.t
xt/pod.t
2 changes: 1 addition & 1 deletion lib/Data/Hopen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use Data::Hopen::Util::NameSet;
use Getargs::Mixed;
use Storable ();

our $VERSION = '0.000014'; # TRIAL
our $VERSION = '0.000015';

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

# Pragmas
use 5.014;
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.000014'; # TRIAL
our $VERSION = '0.000015';

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

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

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

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

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

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

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

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

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

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

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

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 @@ -4,7 +4,7 @@ use strict;
use Data::Hopen::Base;
use Exporter 'import';

our $VERSION = '0.000014'; # TRIAL
our $VERSION = '0.000015';

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

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 @@ -4,7 +4,7 @@ package Data::Hopen::Scope::Hash;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000014'; # TRIAL
our $VERSION = '0.000015';

use parent 'Data::Hopen::Scope';
use Class::Tiny {
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.000014'; # TRIAL
our $VERSION = '0.000015';

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

# 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 @@ -4,7 +4,7 @@ use Data::Hopen;
use strict;
use Data::Hopen::Base;

our $VERSION = '0.000014'; # TRIAL
our $VERSION = '0.000015';

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

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

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

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

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

use Class::Tiny;

Expand Down

0 comments on commit ce44c48

Please sign in to comment.