diff --git a/Changelog b/Changelog index 094bc0e57c59b793d874f8f1364b68860e6a91f6..b16c6a0bd557581c58cc3689b1c7f0ef74ba0700 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,9 @@ +Travel::Status::DE::DeutscheBahn 6.01 - Thu Apr 04 2024 + + * Journey: Add operators accessor + * Add CMTA (Capital Metropolitan Transportation Authority) and BLS (BLS AG) + services + Travel::Status::DE::DeutscheBahn 6.00 - Tue Apr 02 2024 * Add AVV (Aachener Verkehrsverbund), BART (Bay Area Rapid Transit), and IE diff --git a/bin/hafas-m b/bin/hafas-m index c32f7479237d62ae7a1ba7e276a54a5c7c638f80..677d45ce39230c9016d49010204a27a8259fc567 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -3,7 +3,7 @@ use strict; use warnings; use 5.014; -our $VERSION = '6.00'; +our $VERSION = '6.01'; use utf8; use DateTime; @@ -675,7 +675,7 @@ B [B<-s> I] [B<-l> I] BI|I =head1 VERSION -version 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index 4fc680e353512564858102bdda8d814e7bd9d243..2dffdd4800c60c93c6767536b94468d738c0632d 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 = '6.00'; +our $VERSION = '6.01'; sub new { my ( $class, %opt ) = @_; @@ -49,7 +49,7 @@ monitor operated by Deutsche Bahn =head1 VERSION -version 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm index fd49287dca7a1fb31d31de00142d3ff979a8a938..6de7f3548297d1c2651f10b5001561417fe5c52f 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 = '6.00'; +our $VERSION = '6.01'; # {{{ Endpoint Definition @@ -1216,7 +1216,7 @@ monitors =head1 VERSION -version 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Journey.pm b/lib/Travel/Status/DE/HAFAS/Journey.pm index 986582a65fcf6f2df34ae091ece3b35e21a8b4dd..a31656ac9f38e9e2049eaad6603e33edf113b18c 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 uniq); use Travel::Status::DE::HAFAS::Stop; -our $VERSION = '6.00'; +our $VERSION = '6.01'; Travel::Status::DE::HAFAS::Journey->mk_ro_accessors( qw(datetime sched_datetime rt_datetime tz_offset @@ -419,7 +419,7 @@ journey received by Travel::Status::DE::HAFAS =head1 VERSION -version 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Location.pm b/lib/Travel/Status/DE/HAFAS/Location.pm index c86bfcff14245bc4f9f3f0a6830b8389ca39cb1e..bac227aa68b3621bd221db323e72a202e977be4b 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 = '6.00'; +our $VERSION = '6.01'; 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 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Message.pm b/lib/Travel/Status/DE/HAFAS/Message.pm index 51f9ff30801b5488dcafc897ffbca5e45e8863b6..bb516b17cfe78ecb43cc0c3cdfc6f8ebc29dc12b 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 = '6.00'; +our $VERSION = '6.01'; 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 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Polyline.pm b/lib/Travel/Status/DE/HAFAS/Polyline.pm index cf62c3671ede794f78fc40ac9b868184e91d5a3b..06bee12bdd379cf9b4856ea49746d532bf233b28 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 = '6.00'; +our $VERSION = '6.01'; # Translated this php script # diff --git a/lib/Travel/Status/DE/HAFAS/Product.pm b/lib/Travel/Status/DE/HAFAS/Product.pm index bd002459978d8e1870f8a63d981ef825c21f8a17..4ee076a1cb81bdf83561dd2b39ffeb80717d4496 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 = '6.00'; +our $VERSION = '6.01'; 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 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Stop.pm b/lib/Travel/Status/DE/HAFAS/Stop.pm index a5d2bf52ab05d519a9282bfc09a0a9321310a996..d078310d22e6936005de33a485a994b677aac701 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 = '6.00'; +our $VERSION = '6.01'; 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 6.00 +version 6.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm index bf75a92005cf834597f2c8b3b55ab3bfdf841478..c78f1b7ec8a3aa84f90b9573bcb4ce25c094c803 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 = '6.00'; +our $VERSION = '6.01'; # {{{ Constructors @@ -180,7 +180,7 @@ finder services =head1 VERSION -version 6.00 +version 6.01 =head1 DESCRIPTION