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

Release v0.19

parent 8036bc9c
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
Travel::Status::DE::DBRIS 0.19 - Sun Dec 14 2025

    * DBRIS->new, ->new-p: Add optional num_vias key
    * Journey: rename train, train_no to trip, trip_no. The former accessors
      are now deprecated and will issue a run-time warning when used.
    * Journey->trip, ->trip_no: Improve handling of combined operator / line
      number prefixes; avoid using trip number as type / line number
    * Journey: New accessors: types, type_at
    * Location: new accessors: operator, trip_type
    * dbris-m: Add -Or / -Oa options (show next stops of all departures)
    * dbris-m: Add --route-entries option
    * dbris-m: Provide more detailed operator information, if available

Travel::Status::DE::DBRIS 0.18 - Mon Nov 17 2025

    * dbris-m: Show trip number changes along the route, if any
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.020;

our $VERSION = '0.18';
our $VERSION = '0.19';

use utf8;
use DateTime;
@@ -683,7 +683,7 @@ B<dbris-m> B<?>I<query>|I<lat>B<:>I<lon>

=head1 VERSION

version 0.18
version 0.19

=head1 DESCRIPTION

+7 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ use Travel::Status::DE::DBRIS::JourneyAtStop;
use Travel::Status::DE::DBRIS::Journey;
use Travel::Status::DE::DBRIS::Location;

our $VERSION = '0.18';
our $VERSION = '0.19';

# {{{ Constructors

@@ -473,7 +473,7 @@ Non-blocking variant;

=head1 VERSION

version 0.18
version 0.19

=head1 DESCRIPTION

@@ -554,6 +554,11 @@ network reception) to be cached.
Passed on to C<< LWP::UserAgent->new >>. Defaults to C<< { timeout => 10 } >>,
you can use an empty hashref to unset the default.

=item B<num_vias> => I<$num> (station)

For each departure, request the names of I<$num> stops between the requested
station and its terminus. Default: 5.

=item B<modes_of_transit> => I<\@arrayref> (station)

Only consider the modes of transit given in I<arrayref> when listing
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ use Travel::Status::DE::DBRIS::Formation::Group;
use Travel::Status::DE::DBRIS::Formation::Sector;
use Travel::Status::DE::DBRIS::Formation::Carriage;

our $VERSION = '0.18';
our $VERSION = '0.19';

Travel::Status::DE::DBRIS::Formation->mk_ro_accessors(
	qw(direction platform train_type));
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ use utf8;
use parent 'Class::Accessor';
use Carp qw(cluck);

our $VERSION = '0.18';
our $VERSION = '0.19';
Travel::Status::DE::DBRIS::Formation::Carriage->mk_ro_accessors(
	qw(class_type is_closed is_dosto is_locomotive is_powercar
	  number model section uic_id type
Loading