diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-19 08:07:15 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-19 08:07:15 +0100 |
commit | 95bde8c8df53c17a4848d3f919a62dcf5a1abc4a (patch) | |
tree | fa0dc37c7061c54ca58cb5a728bcf8e158da0e1d | |
parent | a5e5c170ee33d5fdd2c7db203ae5ed6b664812e4 (diff) |
Release v0.100.10
-rw-r--r-- | Changelog | 6 | ||||
-rwxr-xr-x | bin/hafas | 4 | ||||
-rw-r--r-- | lib/Travel/Routing/DE/HAFAS.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Routing/DE/HAFAS/Connection.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Routing/DE/HAFAS/Connection/Section.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Routing/DE/HAFAS/Utils.pm | 4 |
6 files changed, 16 insertions, 10 deletions
@@ -1,3 +1,9 @@ +Travel::Routing::DE::HAFAS 0.10 - Sun Jan 19 2024 + + * DB HAFAS is dead. + * hafas: Use VRN by default and adjust documentation. + * HAFAS: The service option is now mandatory; adjust documentation. + Travel::Routing::DE::HAFAS 0.09 - Wed Nov 20 2024 * Improve handling of backend messages and errors @@ -3,7 +3,7 @@ use strict; use warnings; use 5.014; -our $VERSION = '0.09'; +our $VERSION = '0.10'; use utf8; use DateTime; @@ -503,7 +503,7 @@ B<hafas> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>] =head1 VERSION -version 0.09 +version 0.10 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/HAFAS.pm b/lib/Travel/Routing/DE/HAFAS.pm index 0cdc042..cce1c8e 100644 --- a/lib/Travel/Routing/DE/HAFAS.pm +++ b/lib/Travel/Routing/DE/HAFAS.pm @@ -19,7 +19,7 @@ use Travel::Status::DE::HAFAS; use Travel::Status::DE::HAFAS::Location; use Travel::Status::DE::HAFAS::Message; -our $VERSION = '0.09'; +our $VERSION = '0.10'; # {{{ Endpoint Definition @@ -554,7 +554,7 @@ Travel::Routing::DE::HAFAS - Interface to HAFAS itinerary services =head1 VERSION -version 0.09 +version 0.10 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/HAFAS/Connection.pm b/lib/Travel/Routing/DE/HAFAS/Connection.pm index da30bc0..d1a5d16 100644 --- a/lib/Travel/Routing/DE/HAFAS/Connection.pm +++ b/lib/Travel/Routing/DE/HAFAS/Connection.pm @@ -11,7 +11,7 @@ use DateTime::Duration; use Travel::Routing::DE::HAFAS::Utils; use Travel::Routing::DE::HAFAS::Connection::Section; -our $VERSION = '0.09'; +our $VERSION = '0.10'; 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) @@ -213,7 +213,7 @@ Travel::Routing::DE::HAFAS::Connection - A single connection between two stops =head1 VERSION -version 0.09 +version 0.10 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm b/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm index dcf6227..625b8fe 100644 --- a/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm +++ b/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm @@ -11,7 +11,7 @@ use DateTime::Duration; use Travel::Routing::DE::HAFAS::Utils; use Travel::Status::DE::HAFAS::Journey; -our $VERSION = '0.09'; +our $VERSION = '0.10'; 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 @@ -212,7 +212,7 @@ Travel::Routing::DE::HAFAS::Connection::Section - A single trip between two stop =head1 VERSION -version 0.09 +version 0.10 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/HAFAS/Utils.pm b/lib/Travel/Routing/DE/HAFAS/Utils.pm index 3a49836..b1568dd 100644 --- a/lib/Travel/Routing/DE/HAFAS/Utils.pm +++ b/lib/Travel/Routing/DE/HAFAS/Utils.pm @@ -9,7 +9,7 @@ use 5.014; use parent 'Exporter'; our @EXPORT = qw(handle_day_change); -our $VERSION = '0.09'; +our $VERSION = '0.10'; sub handle_day_change { my (%opt) = @_; @@ -55,7 +55,7 @@ None. =head1 VERSION -version 0.09 +version 0.10 =head1 METHODS |