Unverified Commit ab564267 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Release v3.13

parent c3274392
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
Travel::Status::DE::VRR 3.13 - Thu Jun 19 2025

    * EFA->new_p: Return $self in case of error so that clients can access
      place_candidates and name_candidates. This behaviour was already
      documented, but not implemented.

Travel::Status::DE::VRR 3.12 - Wed Jun 18 2025
Travel::Status::DE::VRR 3.12 - Wed Jun 18 2025


    * Departure->id: Include the scheduled departure time. This fixes cases
    * Departure->id: Include the scheduled departure time. This fixes cases
+2 −2
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@ use warnings;
use 5.010;
use 5.010;
use utf8;
use utf8;


our $VERSION = '3.12';
our $VERSION = '3.13';


binmode( STDOUT, ':encoding(utf-8)' );
binmode( STDOUT, ':encoding(utf-8)' );


@@ -636,7 +636,7 @@ B<efa-m> [B<-s> I<service>] I<tripid>


=head1 VERSION
=head1 VERSION


version 3.12
version 3.13


=head1 DESCRIPTION
=head1 DESCRIPTION


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


our $VERSION = '3.12';
our $VERSION = '3.13';


use Carp qw(confess cluck);
use Carp qw(confess cluck);
use DateTime;
use DateTime;
@@ -703,7 +703,7 @@ Travel::Status::DE::EFA - unofficial EFA departure monitor


=head1 VERSION
=head1 VERSION


version 3.12
version 3.13


=head1 DESCRIPTION
=head1 DESCRIPTION


+2 −2
Original line number Original line Diff line number Diff line
@@ -10,7 +10,7 @@ use Travel::Status::DE::EFA::Stop;


use parent 'Class::Accessor';
use parent 'Class::Accessor';


our $VERSION = '3.12';
our $VERSION = '3.13';


Travel::Status::DE::EFA::Departure->mk_ro_accessors(
Travel::Status::DE::EFA::Departure->mk_ro_accessors(
	qw(countdown datetime delay destination is_cancelled key line lineref mot
	qw(countdown datetime delay destination is_cancelled key line lineref mot
@@ -304,7 +304,7 @@ departure received by Travel::Status::DE::EFA


=head1 VERSION
=head1 VERSION


version 3.12
version 3.13


=head1 DESCRIPTION
=head1 DESCRIPTION


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


use parent 'Class::Accessor';
use parent 'Class::Accessor';


our $VERSION = '3.12';
our $VERSION = '3.13';


Travel::Status::DE::EFA::Info->mk_ro_accessors(
Travel::Status::DE::EFA::Info->mk_ro_accessors(
	qw(link_url link_text subject content subtitle additional_text));
	qw(link_url link_text subject content subtitle additional_text));
@@ -58,7 +58,7 @@ Travel::Status::DE::EFA::Info - Information about a public transit stop


=head1 VERSION
=head1 VERSION


version 3.12
version 3.13


=head1 DESCRIPTION
=head1 DESCRIPTION


Loading