Skip to content

Commit aa2ed5d

Browse files
committed
Version number bump and updated changelog
1 parent 5b07a0f commit aa2ed5d

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

Changes

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
Revision history for Perl extension Algorithm::Odometer::Tiny.
22

3-
0.04 not yet released
4-
- ...
5-
- docs: mention Cartesian product and link to other modules
3+
0.04 Wed, Jan 1 2020
4+
- Reorganized module code a tiny bit
5+
- Several doc updates, such as mentioning the Cartesian product and
6+
linking to other modules
67

78
0.02 Sat, Oct 5 2019 commit 06ec85554be6ca9c23178ab51c8fc4bb4199eeb7
89
- first public release

Makefile.PL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ WriteMakefile(
1313
provides => {
1414
'Algorithm::Odometer::Tiny' => {
1515
file => 'lib/Algorithm/Odometer/Tiny.pm',
16-
version => '0.02',
16+
version => '0.04',
1717
},
1818
'Algorithm::Odometer::Gray' => {
1919
file => 'lib/Algorithm/Odometer/Gray.pm',
20-
version => '0.02',
20+
version => '0.04',
2121
},
2222
},
2323
no_index => {

lib/Algorithm/Odometer/Gray.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
# SEE THE END OF THIS FILE FOR AUTHOR, COPYRIGHT AND LICENSE INFORMATION
66

77
{ package Algorithm::Odometer::Gray;
8-
our $VERSION = "0.02";
8+
our $VERSION = "0.04";
99
use Carp;
1010
use overload '<>' => sub {
1111
my $self = shift;

lib/Algorithm/Odometer/Tiny.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
# SEE THE END OF THIS FILE FOR AUTHOR, COPYRIGHT AND LICENSE INFORMATION
66

77
{ package Algorithm::Odometer::Tiny;
8-
our $VERSION = "0.02";
8+
our $VERSION = "0.04";
99
use Carp;
1010
use overload '<>' => sub {
1111
my $self = shift;

t/algorithm_odometer_tiny.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ BEGIN {
3333
use_ok('Algorithm::Odometer::Tiny') or BAIL_OUT("failed to use Algorithm::Odometer::Tiny");
3434
use_ok('Algorithm::Odometer::Gray') or BAIL_OUT("failed to use Algorithm::Odometer::Gray");
3535
}
36-
is $Algorithm::Odometer::Tiny::VERSION, '0.02', 'Algorithm::Odometer::Tiny version matches tests';
37-
is $Algorithm::Odometer::Gray::VERSION, '0.02', 'Algorithm::Odometer::Gray version matches tests';
36+
is $Algorithm::Odometer::Tiny::VERSION, '0.04', 'Algorithm::Odometer::Tiny version matches tests';
37+
is $Algorithm::Odometer::Gray::VERSION, '0.04', 'Algorithm::Odometer::Gray version matches tests';
3838

3939
{
4040
my $odo = Algorithm::Odometer::Tiny->new( ['foo','bar'], '-', [3..5] );

0 commit comments

Comments
 (0)