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

Release v3.01

parent a9604d55
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
Travel::Status::DE::VRR 3.01 - Thu Oct 03 2024

    * Fix Departure->route_interesting
    * efa-m: Add --json option

Travel::Status::DE::VRR 3.00 - Sun Sep 29 2024

    * Drop XML::LibXML dependency
    * New dependencies: DateTime::Format::Strptime, JSON
    * Switch API language from XML to JSON
+2 −2
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ use warnings;
use 5.010;
use utf8;

our $VERSION = '3.00';
our $VERSION = '3.01';

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

@@ -532,7 +532,7 @@ B<efa-m> [B<-Lr>] [B<-d> I<dd.mm.yyyy>] [B<-t> I<hh:mm>]

=head1 VERSION

version 3.00
version 3.01

=head1 DESCRIPTION

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

our $VERSION = '3.00';
our $VERSION = '3.01';

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

=head1 VERSION

version 3.00
version 3.01

=head1 DESCRIPTION

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

use parent 'Class::Accessor';

our $VERSION = '3.00';
our $VERSION = '3.01';

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

=head1 VERSION

version 3.00
version 3.01

=head1 DESCRIPTION

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

use parent 'Class::Accessor';

our $VERSION = '3.00';
our $VERSION = '3.01';

Travel::Status::DE::EFA::Line->mk_ro_accessors(
	qw(direction mot name number operator route type valid));
@@ -57,7 +57,7 @@ requested station

=head1 VERSION

version 3.00
version 3.01

=head1 DESCRIPTION

Loading