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

Release v0.07

parent f87220cf
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
Travel::Status::DE::DBRIS 0.06 - sat Mar 01 2025
Travel::Status::DE::DBRIS 0.07 - Sun Mar 23 2025

    * New optional recommended module: GIS::Distance (for Journey->polyline)
    * Location: Extract lat/lon from location ID, if needed
    * Journey: Add polyline accessor; enhance it if GIS::Distance is available
    * Journey: Add type, number accessors
    * dbris-m: Add --with-polyline option

Travel::Status::DE::DBRIS 0.06 - Sat Mar 01 2025

    * DBRIS: Fix new_p constructor
    * JourneyAtStop->via: return list, not arrayref
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.020;

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

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

=head1 VERSION

version 0.06
version 0.07

=head1 DESCRIPTION

+2 −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.06';
our $VERSION = '0.07';

# {{{ Constructors

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

=head1 VERSION

version 0.06
version 0.07

=head1 DESCRIPTION

+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.06';
our $VERSION = '0.07';

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.06';
our $VERSION = '0.07';
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