From eb08c5591777a8b4e6e9b56386982ee69b7ee595 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Sat, 11 Nov 2023 09:07:16 +0100 Subject: Release v4.19 --- Changelog | 5 +++++ 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/Message.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/Polyline.pm | 2 +- lib/Travel/Status/DE/HAFAS/Stop.pm | 4 ++-- lib/Travel/Status/DE/HAFAS/StopFinder.pm | 4 ++-- 9 files changed, 20 insertions(+), 15 deletions(-) diff --git a/Changelog b/Changelog index e4c6c4b..7c9364f 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,8 @@ +Travel::Status::DE::DeutscheBahn 4.19 - Sat Nov 11 2023 + + * hafas-m: Fall back to locationSearch if StopFinder is unavailable + * Message: Expose message type; document ->code and ->type + Travel::Status::DE::DeutscheBahn 4.18 - Sun Oct 29 2023 * Allow HAFAS and hafas-m users to specify the backend language diff --git a/bin/hafas-m b/bin/hafas-m index 8125d96..980bae2 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -3,7 +3,7 @@ use strict; use warnings; use 5.014; -our $VERSION = '4.18'; +our $VERSION = '4.19'; use utf8; use DateTime; @@ -396,7 +396,7 @@ B [B<-s> I] [B<-l> I] I =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index 53fff78..3204376 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 = '4.18'; +our $VERSION = '4.19'; sub new { my ( $class, %opt ) = @_; @@ -49,7 +49,7 @@ monitor operated by Deutsche Bahn =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm index b8857b7..d5c2730 100644 --- a/lib/Travel/Status/DE/HAFAS.pm +++ b/lib/Travel/Status/DE/HAFAS.pm @@ -20,7 +20,7 @@ use Travel::Status::DE::HAFAS::Journey; use Travel::Status::DE::HAFAS::StopFinder; use Travel::Status::DE::HAFAS::Stop; -our $VERSION = '4.18'; +our $VERSION = '4.19'; # {{{ Endpoint Definition @@ -902,7 +902,7 @@ monitors =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Journey.pm b/lib/Travel/Status/DE/HAFAS/Journey.pm index cfc8b67..5f96c8f 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 = '4.18'; +our $VERSION = '4.19'; Travel::Status::DE::HAFAS::Journey->mk_ro_accessors( qw(datetime sched_datetime rt_datetime @@ -475,7 +475,7 @@ journey received by Travel::Status::DE::HAFAS =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Message.pm b/lib/Travel/Status/DE/HAFAS/Message.pm index e2c05c8..af3997e 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 = '4.18'; +our $VERSION = '4.19'; 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 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Polyline.pm b/lib/Travel/Status/DE/HAFAS/Polyline.pm index ad84f5c..6248b2a 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 = '4.18'; +our $VERSION = '4.19'; # Translated this php script # diff --git a/lib/Travel/Status/DE/HAFAS/Stop.pm b/lib/Travel/Status/DE/HAFAS/Stop.pm index 408da6e..4a6b017 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 = '4.18'; +our $VERSION = '4.19'; Travel::Status::DE::HAFAS::Stop->mk_ro_accessors( qw(eva name lat lon distance_m weight)); @@ -76,7 +76,7 @@ Travel::Status::DE::HAFAS::Stop - Information about a HAFAS stop. =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm index d06cd49..8368918 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 = '4.18'; +our $VERSION = '4.19'; # {{{ Constructors @@ -180,7 +180,7 @@ finder services =head1 VERSION -version 4.18 +version 4.19 =head1 DESCRIPTION -- cgit v1.2.3