From 99ea553eadf3dbfea7c5f0948115012617195b26 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 2 Apr 2024 19:45:20 +0200 Subject: Release v6.00 --- Changelog | 13 +++++++++++++ bin/hafas-m | 4 ++-- lib/Travel/Status/DE/DeutscheBahn.pm | 4 ++-- lib/Travel/Status/DE/HAFAS.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Journey.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Location.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Message.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Polyline.pm | 2 +- lib/Travel/Status/DE/HAFAS/Product.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Stop.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/StopFinder.pm | 4 ++-- 11 files changed, 32 insertions(+), 19 deletions(-) diff --git a/Changelog b/Changelog index 70e0176..094bc0e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,16 @@ +Travel::Status::DE::DeutscheBahn 6.00 - Tue Apr 02 2024 + + * Add AVV (Aachener Verkehrsverbund), BART (Bay Area Rapid Transit), and IE + (Iarnród Éireann / Irish Rail) backends + * Support backend-specific time zones; add time_zone to service description + * Handle cross-timezone journeys and stops whose time zone differs from + the backend's default time zone. As of this release, all input and output + datetimes refer to the backend's default time zone rather than local + time (Stop and Journey accessors) / whatever (hafas-m and HAFAS + arguments). Use the new tz_offset accessor to determine local time. + This is a breaking change. + * Journey, Stop: Add tz_offset accessor + Travel::Status::DE::DeutscheBahn 5.06 - Thu Mar 28 2024 * Add Travel::Status::DE::HAFAS::Product module to handle line numbers, diff --git a/bin/hafas-m b/bin/hafas-m index 24005e8..4676c49 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -3,7 +3,7 @@ use strict; use warnings; use 5.014; -our $VERSION = '5.06'; +our $VERSION = '6.00'; use utf8; use DateTime; @@ -683,7 +683,7 @@ B [B<-s> I] [B<-l> I] BI|I =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index 98035af..4fc680e 100644 --- a/lib/Travel/Status/DE/DeutscheBahn.pm +++ b/lib/Travel/Status/DE/DeutscheBahn.pm @@ -6,7 +6,7 @@ use 5.014; use parent 'Travel::Status::DE::HAFAS'; -our $VERSION = '5.06'; +our $VERSION = '6.00'; sub new { my ( $class, %opt ) = @_; @@ -49,7 +49,7 @@ monitor operated by Deutsche Bahn =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm index 40351fe..c331df9 100644 --- a/lib/Travel/Status/DE/HAFAS.pm +++ b/lib/Travel/Status/DE/HAFAS.pm @@ -21,7 +21,7 @@ use Travel::Status::DE::HAFAS::Polyline qw(decode_polyline); use Travel::Status::DE::HAFAS::Product; use Travel::Status::DE::HAFAS::StopFinder; -our $VERSION = '5.06'; +our $VERSION = '6.00'; # {{{ Endpoint Definition @@ -1140,7 +1140,7 @@ monitors =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Journey.pm b/lib/Travel/Status/DE/HAFAS/Journey.pm index 90708dc..afdea48 100644 --- a/lib/Travel/Status/DE/HAFAS/Journey.pm +++ b/lib/Travel/Status/DE/HAFAS/Journey.pm @@ -11,7 +11,7 @@ use DateTime::Format::Strptime; use List::Util qw(any); use Travel::Status::DE::HAFAS::Stop; -our $VERSION = '5.06'; +our $VERSION = '6.00'; Travel::Status::DE::HAFAS::Journey->mk_ro_accessors( qw(datetime sched_datetime rt_datetime tz_offset @@ -402,7 +402,7 @@ journey received by Travel::Status::DE::HAFAS =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Location.pm b/lib/Travel/Status/DE/HAFAS/Location.pm index ec22057..c86bfcf 100644 --- a/lib/Travel/Status/DE/HAFAS/Location.pm +++ b/lib/Travel/Status/DE/HAFAS/Location.pm @@ -6,7 +6,7 @@ use 5.014; use parent 'Class::Accessor'; -our $VERSION = '5.06'; +our $VERSION = '6.00'; Travel::Status::DE::HAFAS::Location->mk_ro_accessors( qw(lid type name eva state lat lon distance_m weight)); @@ -57,7 +57,7 @@ Travel::Status::DE::HAFAS::Location - A single public transit location =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Message.pm b/lib/Travel/Status/DE/HAFAS/Message.pm index 546f932..51f9ff3 100644 --- a/lib/Travel/Status/DE/HAFAS/Message.pm +++ b/lib/Travel/Status/DE/HAFAS/Message.pm @@ -6,7 +6,7 @@ use 5.014; use parent 'Class::Accessor'; -our $VERSION = '5.06'; +our $VERSION = '6.00'; Travel::Status::DE::HAFAS::Message->mk_ro_accessors( qw(short type text code prio is_him ref_count)); @@ -69,7 +69,7 @@ Travel::Status::DE::HAFAS::Message - An arrival/departure-related message. =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Polyline.pm b/lib/Travel/Status/DE/HAFAS/Polyline.pm index 032faae..cf62c36 100644 --- a/lib/Travel/Status/DE/HAFAS/Polyline.pm +++ b/lib/Travel/Status/DE/HAFAS/Polyline.pm @@ -16,7 +16,7 @@ use 5.014; use parent 'Exporter'; our @EXPORT_OK = qw(decode_polyline); -our $VERSION = '5.06'; +our $VERSION = '6.00'; # Translated this php script # diff --git a/lib/Travel/Status/DE/HAFAS/Product.pm b/lib/Travel/Status/DE/HAFAS/Product.pm index 53592c2..bd00245 100644 --- a/lib/Travel/Status/DE/HAFAS/Product.pm +++ b/lib/Travel/Status/DE/HAFAS/Product.pm @@ -8,7 +8,7 @@ use 5.014; use parent 'Class::Accessor'; -our $VERSION = '5.06'; +our $VERSION = '6.00'; Travel::Status::DE::HAFAS::Product->mk_ro_accessors( qw(class line_id line_no name number type type_long operator)); @@ -105,7 +105,7 @@ associated with a journey. =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Stop.pm b/lib/Travel/Status/DE/HAFAS/Stop.pm index 0b4a2f3..a5d2bf5 100644 --- a/lib/Travel/Status/DE/HAFAS/Stop.pm +++ b/lib/Travel/Status/DE/HAFAS/Stop.pm @@ -8,7 +8,7 @@ use 5.014; use parent 'Class::Accessor'; -our $VERSION = '5.06'; +our $VERSION = '6.00'; Travel::Status::DE::HAFAS::Stop->mk_ro_accessors( qw(loc @@ -218,7 +218,7 @@ Travel::Status::DE::HAFAS::Stop - Information about a HAFAS stop. =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm index bad7bef..bf75a92 100644 --- a/lib/Travel/Status/DE/HAFAS/StopFinder.pm +++ b/lib/Travel/Status/DE/HAFAS/StopFinder.pm @@ -10,7 +10,7 @@ use Encode qw(decode); use JSON; use LWP::UserAgent; -our $VERSION = '5.06'; +our $VERSION = '6.00'; # {{{ Constructors @@ -180,7 +180,7 @@ finder services =head1 VERSION -version 5.06 +version 6.00 =head1 DESCRIPTION -- cgit v1.2.3