Skip to content

Commit

Permalink
Updating for release of version 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills committed Jun 9, 2015
1 parent 43ad203 commit c190e97
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Revision history for Game-Life-NDim

0.0.3 2015-06-09
Updating for release of version 0.0.3
Set Test::More minimum version (Ivan Wills)
Removed unneeded tag (Ivan Wills)
removed travis testing perl 5.8 (Ivan Wills)
Added config for coveralls.io (Ivan Wills)

0.0.2 2015-01-13
Updating for release of version 0.0.2
Updated License (Ivan Wills)
Expand Down
2 changes: 1 addition & 1 deletion example/simple
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use English qw/ -no_match_vars /;
use FindBin qw/$Bin/;
use Game::Life::NDim qw/game_of_life/;

our $VERSION = version->new('0.0.2');
our $VERSION = version->new('0.0.3');
my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs;

my %option = (
Expand Down
4 changes: 2 additions & 2 deletions lib/Game/Life/NDim.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use Game::Life::NDim::Board;

use overload '""' => \&to_string;

our $VERSION = version->new('0.0.2');
our $VERSION = version->new('0.0.3');
our @EXPORT_OK = qw/game_of_life/;
our %EXPORT_TAGS = ();

Expand Down Expand Up @@ -102,7 +102,7 @@ Game::Life::NDim - Infrastructure for playing Conway's game of life with support
=head1 VERSION
This documentation refers to Game::Life::NDim version 0.0.2.
This documentation refers to Game::Life::NDim version 0.0.3.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Game/Life/NDim/Board.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use Params::Coerce ();

use overload '""' => \&to_string;

our $VERSION = version->new('0.0.2');
our $VERSION = version->new('0.0.3');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();

Expand Down Expand Up @@ -259,7 +259,7 @@ Game::Life::NDim::Board - Object representing the board
=head1 VERSION
This documentation refers to Game::Life::NDim::Board version 0.0.2.
This documentation refers to Game::Life::NDim::Board version 0.0.3.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Game/Life/NDim/Dim.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use overload
'==' => sub { for (0..@{$_->[0]}-1) { return 0 if $_[0][$_] != $_[1][$_] } return 1 },
'+' => \&sum_list;

our $VERSION = version->new('0.0.2');
our $VERSION = version->new('0.0.3');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();

Expand Down Expand Up @@ -109,7 +109,7 @@ Game::Life::NDim::Dim - The dimension of a board?
=head1 VERSION
This documentation refers to Game::Life::NDim::Dim version 0.0.2.
This documentation refers to Game::Life::NDim::Dim version 0.0.3.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Game/Life/NDim/Life.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use List::Util qw/sum max min/;

use overload '""' => \&to_string;

our $VERSION = version->new('0.0.2');
our $VERSION = version->new('0.0.3');
our @EXPORT_OK = qw//;
our %EXPORT_TAGS = ();
#our @EXPORT = qw//;
Expand Down Expand Up @@ -177,7 +177,7 @@ Game::Life::NDim::Life - Object representing a life
=head1 VERSION
This documentation refers to Game::Life::NDim::Life version 0.0.2.
This documentation refers to Game::Life::NDim::Life version 0.0.3.
=head1 SYNOPSIS
Expand Down

0 comments on commit c190e97

Please sign in to comment.