diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-30 11:21:30 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-30 11:21:30 +0100 |
commit | 0835e5decd539bba7beb185e035cafb897027b7f (patch) | |
tree | 4be562fb5837a1b8517fac1ebc79d8494d71a185 | |
parent | f65ef62ef964fc1b0305802c8918480bb6bd74f6 (diff) |
Release v2.042.04
-rw-r--r-- | Changelog | 4 | ||||
-rwxr-xr-x | bin/hafas-m | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/DeutscheBahn.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/HAFAS.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/HAFAS/Result.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/HAFAS/StopFinder.pm | 4 |
6 files changed, 14 insertions, 10 deletions
@@ -1,3 +1,7 @@ +Travel::Status::DE::DeutscheBahn 2.04 - Sun Dec 30 2018 + + * Handle invalid XML when using the VBB backend + Travel::Status::DE::DeutscheBahn 2.03 - Sat Dec 16 2017 * Update DB backend API URL diff --git a/bin/hafas-m b/bin/hafas-m index b2efd2b..66ef99d 100755 --- a/bin/hafas-m +++ b/bin/hafas-m @@ -3,7 +3,7 @@ use strict; use warnings; use 5.014; -our $VERSION = '2.03'; +our $VERSION = '2.04'; use Encode qw(decode); use Getopt::Long qw(:config no_ignore_case); @@ -212,7 +212,7 @@ B<hafas-m> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>] =head1 VERSION -version 2.03 +version 2.04 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm index 4809f55..66f16a1 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 = '2.03'; +our $VERSION = '2.04'; sub new { my ( $class, %opt ) = @_; @@ -49,7 +49,7 @@ monitor operated by Deutsche Bahn =head1 VERSION -version 2.03 +version 2.04 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm index 62a123b..234887b 100644 --- a/lib/Travel/Status/DE/HAFAS.pm +++ b/lib/Travel/Status/DE/HAFAS.pm @@ -16,7 +16,7 @@ use Travel::Status::DE::HAFAS::Result; use Travel::Status::DE::HAFAS::StopFinder; use XML::LibXML; -our $VERSION = '2.03'; +our $VERSION = '2.04'; my %hafas_instance = ( BVG => { @@ -425,7 +425,7 @@ monitors =head1 VERSION -version 2.03 +version 2.04 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/Result.pm b/lib/Travel/Status/DE/HAFAS/Result.pm index 476f6fd..bdc1340 100644 --- a/lib/Travel/Status/DE/HAFAS/Result.pm +++ b/lib/Travel/Status/DE/HAFAS/Result.pm @@ -8,7 +8,7 @@ no if $] >= 5.018, warnings => 'experimental::smartmatch'; use parent 'Class::Accessor'; -our $VERSION = '2.03'; +our $VERSION = '2.04'; Travel::Status::DE::HAFAS::Result->mk_ro_accessors( qw(date datetime info raw_e_delay raw_delay time train route_end)); @@ -190,7 +190,7 @@ arrival/departure received by Travel::Status::DE::HAFAS =head1 VERSION -version 2.03 +version 2.04 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm index ed575da..c472c97 100644 --- a/lib/Travel/Status/DE/HAFAS/StopFinder.pm +++ b/lib/Travel/Status/DE/HAFAS/StopFinder.pm @@ -12,7 +12,7 @@ use Encode qw(decode); use JSON; use LWP::UserAgent; -our $VERSION = '2.03'; +our $VERSION = '2.04'; sub new { my ( $obj, %conf ) = @_; @@ -123,7 +123,7 @@ finder services =head1 VERSION -version 2.03 +version 2.04 =head1 DESCRIPTION |