diff options
-rw-r--r-- | Changelog | 5 | ||||
-rwxr-xr-x | bin/db-iris | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/IRIS.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/IRIS/Result.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/IRIS/Stations.pm.PL | 4 |
5 files changed, 13 insertions, 8 deletions
@@ -1,3 +1,8 @@ +Travel::Status::DE::IRIS 1.52 - Sun Nov 22 2020 + + * get_station_by_name: Fix crash (unhandled exception) when the station + name is an invalid regular expression + Travel::Status::DE::IRIS 1.51 - Thu Oct 22 2020 * Add BER airport stations diff --git a/bin/db-iris b/bin/db-iris index c3161e5..96cefbb 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -6,7 +6,7 @@ use utf8; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.51'; +our $VERSION = '1.52'; use DateTime; use DateTime::Format::Strptime; @@ -571,7 +571,7 @@ B<db-iris> [B<-rx>] [B<-d> I<date>] [B<-o> I<output-flags>] =head1 VERSION -version 1.51 +version 1.52 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm index 689800b..7bb2005 100644 --- a/lib/Travel/Status/DE/IRIS.pm +++ b/lib/Travel/Status/DE/IRIS.pm @@ -6,7 +6,7 @@ use 5.014; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.51'; +our $VERSION = '1.52'; use Carp qw(confess cluck); use DateTime; @@ -636,7 +636,7 @@ Travel::Status::DE::IRIS - Interface to IRIS based web departure monitors. =head1 VERSION -version 1.51 +version 1.52 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/IRIS/Result.pm b/lib/Travel/Status/DE/IRIS/Result.pm index abccea0..1e1a9d5 100644 --- a/lib/Travel/Status/DE/IRIS/Result.pm +++ b/lib/Travel/Status/DE/IRIS/Result.pm @@ -15,7 +15,7 @@ use List::Compare; use List::MoreUtils qw(none uniq firstval); use Scalar::Util qw(weaken); -our $VERSION = '1.51'; +our $VERSION = '1.52'; my %translation = ( 2 => 'Polizeiliche Ermittlung', @@ -841,7 +841,7 @@ arrival/departure received by Travel::Status::DE::IRIS =head1 VERSION -version 1.51 +version 1.52 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/IRIS/Stations.pm.PL b/lib/Travel/Status/DE/IRIS/Stations.pm.PL index 3547448..a711910 100644 --- a/lib/Travel/Status/DE/IRIS/Stations.pm.PL +++ b/lib/Travel/Status/DE/IRIS/Stations.pm.PL @@ -35,7 +35,7 @@ use Text::LevenshteinXS qw(distance); # TODO switch to Text::Levenshtein::XS once AUR/Debian packages become available -our $VERSION = '1.51'; +our $VERSION = '1.52'; # Automatically generated, see share/stations.json my @stations = ( @@ -183,7 +183,7 @@ Travel::Status::DE::IRIS::Stations - Station name to station code mapping =head1 VERSION -version 1.51 +version 1.52 =head1 DESCRIPTION |