Skip to content

Commit 6bc3571

Browse files
committed
- Renamed Forked test to OtherLink test to be more explicit.
1 parent 96a9f8e commit 6bc3571

File tree

16 files changed

+81
-78
lines changed

16 files changed

+81
-78
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Map::Tube
22

3+
4.07 2025-04-17T15:50:00+00:00
4+
- Renamed Forked test to OtherLink test to be more explicit.
5+
36
4.06 2025-04-15T17:25:00+00:00
47
- Proposed patch for this FAIL report, thanks Andreas J. Koenig.
58
https://www.cpantesters.org/cpan/report/50dde750-1736-11f0-8297-ce01b18213f0

MANIFEST

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ t/line-stations.t
3232
t/map.t
3333
t/not_ok_map.t
3434
t/ok_map.t
35-
t/ok_map_forked.t
35+
t/ok_map_other_link.t
3636
t/ok_map_functions.t
3737
t/ok_map_routes.t
3838
t/preferred-route.t
3939
t/Sample.pm
40-
t/Forked.pm
41-
t/forked-map.xml
40+
t/OtherLink.pm
41+
t/other-link-map.xml
4242
t/sample.xml
4343
t/lib/BadSample.pm
4444
t/lib/Sample.pm

Makefile.PL

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ WriteMakefile(
5252
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
5353
'meta-spec' => { version => 2 },
5454
provides => {
55-
'Map::Tube' => { file => 'lib/Map/Tube.pm' , version => '4.06' },
56-
'Map::Tube::Node' => { file => 'lib/Map/Tube/Node.pm' , version => '4.06' },
57-
'Map::Tube::Line' => { file => 'lib/Map/Tube/Line.pm' , version => '4.06' },
58-
'Map::Tube::Table' => { file => 'lib/Map/Tube/Table.pm' , version => '4.06' },
59-
'Map::Tube::Route' => { file => 'lib/Map/Tube/Route.pm' , version => '4.06' },
60-
'Map::Tube::Utils' => { file => 'lib/Map/Tube/Utils.pm' , version => '4.06' },
61-
'Map::Tube::Types' => { file => 'lib/Map/Tube/Types.pm' , version => '4.06' },
62-
'Map::Tube::Cookbook' => { file => 'lib/Map/Tube/Cookbook.pm' , version => '4.06' },
63-
'Map::Tube::Pluggable' => { file => 'lib/Map/Tube/Pluggable.pm', version => '4.06' },
64-
'Test::Map::Tube' => { file => 'lib/Test/Map/Tube.pm' , version => '4.06' },
55+
'Map::Tube' => { file => 'lib/Map/Tube.pm' , version => '4.07' },
56+
'Map::Tube::Node' => { file => 'lib/Map/Tube/Node.pm' , version => '4.07' },
57+
'Map::Tube::Line' => { file => 'lib/Map/Tube/Line.pm' , version => '4.07' },
58+
'Map::Tube::Table' => { file => 'lib/Map/Tube/Table.pm' , version => '4.07' },
59+
'Map::Tube::Route' => { file => 'lib/Map/Tube/Route.pm' , version => '4.07' },
60+
'Map::Tube::Utils' => { file => 'lib/Map/Tube/Utils.pm' , version => '4.07' },
61+
'Map::Tube::Types' => { file => 'lib/Map/Tube/Types.pm' , version => '4.07' },
62+
'Map::Tube::Cookbook' => { file => 'lib/Map/Tube/Cookbook.pm' , version => '4.07' },
63+
'Map::Tube::Pluggable' => { file => 'lib/Map/Tube/Pluggable.pm', version => '4.07' },
64+
'Test::Map::Tube' => { file => 'lib/Test/Map/Tube.pm' , version => '4.07' },
6565
},
6666
prereqs => {
6767
test => {

lib/Map/Tube.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube;
22

3-
$Map::Tube::VERSION = '4.06';
3+
$Map::Tube::VERSION = '4.07';
44
$Map::Tube::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube - Lightweight Routing Framework.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Cookbook.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Cookbook;
22

3-
$Map::Tube::Cookbook::VERSION = '4.06';
3+
$Map::Tube::Cookbook::VERSION = '4.07';
44
$Map::Tube::Cookbook::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Cookbook - Cookbook for Map::Tube library.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Line.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Line;
22

3-
$Map::Tube::Line::VERSION = '4.06';
3+
$Map::Tube::Line::VERSION = '4.07';
44
$Map::Tube::Line::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Line - Class to represent the line in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Node.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Node;
22

3-
$Map::Tube::Node::VERSION = '4.06';
3+
$Map::Tube::Node::VERSION = '4.07';
44
$Map::Tube::Node::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Node - Class to represent the station in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Pluggable.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Pluggable;
22

3-
$Map::Tube::Pluggable::VERSION = '4.06';
3+
$Map::Tube::Pluggable::VERSION = '4.07';
44
$Map::Tube::Pluggable::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Pluggable - Class to load plugins for Map::Tube.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Route.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Route;
22

3-
$Map::Tube::Route::VERSION = '4.06';
3+
$Map::Tube::Route::VERSION = '4.07';
44
$Map::Tube::Route::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Route - Class to represent the route in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

lib/Map/Tube/Table.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package Map::Tube::Table;
22

3-
$Map::Tube::Table::VERSION = '4.06';
3+
$Map::Tube::Table::VERSION = '4.07';
44
$Map::Tube::Table::AUTHORITY = 'cpan:MANWAR';
55

66
=head1 NAME
@@ -9,7 +9,7 @@ Map::Tube::Table - Class to represent the table in the map.
99
1010
=head1 VERSION
1111
12-
Version 4.06
12+
Version 4.07
1313
1414
=cut
1515

0 commit comments

Comments
 (0)