Commit 09e38ae5 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

version bump

parent d13e9426
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
Travel::Status::DE::IRIS 0.07 - Fri Jan 09 2015

   * Fix a crash related to unscheduled additional stops in a train's route
   * Improve Travel::Status::DE::IRIS::Stations matching
   * Add IRIS delay/qos keys 56, 59, 61, 65, 73, 74, 77

Travel::Status::DE::IRIS 0.06 - Mon Nov 03 2014
Travel::Status::DE::IRIS 0.06 - Mon Nov 03 2014


    * New non-core module dependency: List::Compare
    * New non-core module dependency: List::Compare
+3 −3
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@ use utf8;


no if $] >= 5.018, warnings => 'experimental::smartmatch';
no if $] >= 5.018, warnings => 'experimental::smartmatch';


our $VERSION = '0.06';
our $VERSION = '0.07';


use Carp;
use Carp;
use DateTime;
use DateTime;
@@ -387,7 +387,7 @@ I<station>


=head1 VERSION
=head1 VERSION


version 0.06
version 0.07


=head1 DESCRIPTION
=head1 DESCRIPTION


@@ -590,7 +590,7 @@ Unknown.


=head1 AUTHOR
=head1 AUTHOR


Copyright (C) 2013-2014 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>
Copyright (C) 2013-2015 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>


=head1 LICENSE
=head1 LICENSE


+3 −3
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@ use 5.014;


no if $] >= 5.018, warnings => 'experimental::smartmatch';
no if $] >= 5.018, warnings => 'experimental::smartmatch';


our $VERSION = '0.06';
our $VERSION = '0.07';


use Carp qw(confess cluck);
use Carp qw(confess cluck);
use DateTime;
use DateTime;
@@ -327,7 +327,7 @@ Travel::Status::DE::IRIS - Interface to IRIS based web departure monitors.


=head1 VERSION
=head1 VERSION


version 0.06
version 0.07


=head1 DESCRIPTION
=head1 DESCRIPTION


@@ -426,7 +426,7 @@ Travel::Status::DE::IRIS::Stations(3pm)


=head1 AUTHOR
=head1 AUTHOR


Copyright (C) 2013-2014 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>
Copyright (C) 2013-2015 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>


=head1 LICENSE
=head1 LICENSE


+3 −3
Original line number Original line Diff line number Diff line
@@ -14,7 +14,7 @@ use DateTime::Format::Strptime;
use List::Compare;
use List::Compare;
use List::MoreUtils qw(none uniq firstval);
use List::MoreUtils qw(none uniq firstval);


our $VERSION = '0.06';
our $VERSION = '0.07';


Travel::Status::DE::IRIS::Result->mk_ro_accessors(
Travel::Status::DE::IRIS::Result->mk_ro_accessors(
	qw(arrival classes date datetime delay departure is_cancelled is_transfer
	qw(arrival classes date datetime delay departure is_cancelled is_transfer
@@ -613,7 +613,7 @@ arrival/departure received by Travel::Status::DE::IRIS


=head1 VERSION
=head1 VERSION


version 0.06
version 0.07


=head1 DESCRIPTION
=head1 DESCRIPTION


@@ -1151,7 +1151,7 @@ Travel::Status::DE::IRIS(3pm).


=head1 AUTHOR
=head1 AUTHOR


Copyright (C) 2013-2014 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>
Copyright (C) 2013-2015 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>


=head1 LICENSE
=head1 LICENSE


+2 −2
Original line number Original line Diff line number Diff line
@@ -7,7 +7,7 @@ use utf8;


use List::MoreUtils qw(firstval);
use List::MoreUtils qw(firstval);


our $VERSION = '0.06';
our $VERSION = '0.07';


my @stations = (
my @stations = (


@@ -15292,7 +15292,7 @@ Travel::Status::DE::IRIS::Stations - Station name to station code mapping


=head1 VERSION
=head1 VERSION


version 0.06
version 0.07


=head1 DESCRIPTION
=head1 DESCRIPTION


Loading