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

Release v0.04

parent 1557c716
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
Travel::Routing::DE::HAFAS 0.04 - Mon Feb 26 2024

    * hafas: Add --raw-json option
    * Handle undefined occupancy and partial cancellations
    * Update ÖBB modes of transport (mot list)

Travel::Routing::DE::HAFAS 0.03 - Sun Dec 10 2023

    * hafas: Add --depart and -a / --arrive options
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.014;

our $VERSION = '0.03';
our $VERSION = '0.04';

use utf8;
use DateTime;
@@ -451,7 +451,7 @@ B<hafas> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>]

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ use Travel::Routing::DE::HAFAS::Connection;
use Travel::Status::DE::HAFAS::Location;
use Travel::Status::DE::HAFAS::Message;

our $VERSION = '0.03';
our $VERSION = '0.04';

# {{{ Endpoint Definition

@@ -678,7 +678,7 @@ Travel::Routing::DE::HAFAS - Interface to HAFAS itinerary services

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ use DateTime::Duration;
use Travel::Routing::DE::HAFAS::Utils;
use Travel::Routing::DE::HAFAS::Connection::Section;

our $VERSION = '0.03';
our $VERSION = '0.04';

Travel::Routing::DE::HAFAS::Connection->mk_ro_accessors(
	qw(changes duration sched_dep rt_dep sched_arr rt_arr dep arr dep_platform arr_platform dep_loc arr_loc dep_cancelled arr_cancelled is_cancelled load)
@@ -198,7 +198,7 @@ Travel::Routing::DE::HAFAS::Connection - A single connection between two stops

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ use DateTime::Duration;
use Travel::Routing::DE::HAFAS::Utils;
use Travel::Status::DE::HAFAS::Journey;

our $VERSION = '0.03';
our $VERSION = '0.04';

Travel::Routing::DE::HAFAS::Connection::Section->mk_ro_accessors(
	qw(type schep_dep rt_dep sched_arr rt_arr dep arr arr_delay dep_delay journey distance duration transfer_duration dep_loc arr_loc
@@ -198,7 +198,7 @@ Travel::Routing::DE::HAFAS::Connection::Section - A single trip between two stop

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

Loading