diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-09-07 23:26:31 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-09-07 23:26:31 +0200 |
commit | cd66bfb3683126db40b67d7eb4d2dab10dcdf293 (patch) | |
tree | 93ecb2978588f7048a0b0df18bc5b1e36cbe5db3 | |
parent | 764aebb85265d4863025365024cb6e901d484789 (diff) |
release v2.002.00
-rw-r--r-- | Changelog | 16 | ||||
-rwxr-xr-x | bin/ura-m | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/ASEAG.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/URA.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/URA/Result.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/URA/Stop.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/GB/TFL.pm | 4 |
7 files changed, 28 insertions, 12 deletions
@@ -1,3 +1,19 @@ +Travel::Status::DE::URA 2.00 - Wed Sep 07 2016 + + * Add support for bus departures in London supplied by the TfL URA + service + * New module: Travel::Status::GB::TfL + * Rename aseag-m to ura-m + * Rename short option -s (corresponding to --strftime) to -f + * Rename short option -S (corresponding to --strfrel) to -F + * New options: + -s / --service selects a backend service (defaults to ASEAG), + --list lists supported backend services, + --ura-base sets a backend service by URL, and + --ura-version sets the backend service version + * Travel::Status::DE::URA::Result: Add ->platform accessor (shortcut for + ->stop_indicator) + Travel::Status::DE::URA 1.02 - Sat Apr 16 2016 * Result: Add stop_indicator accessor @@ -5,7 +5,7 @@ use 5.010; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.02'; +our $VERSION = '2.00'; binmode( STDOUT, ':encoding(utf-8)' ); @@ -299,7 +299,7 @@ B<ura-m> [B<-s> I<service>] [B<-pV>] [B<-l> I<lines>] [B<-o> I<outputtypes>] =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/ASEAG.pm b/lib/Travel/Status/DE/ASEAG.pm index 9625303..0c7d918 100644 --- a/lib/Travel/Status/DE/ASEAG.pm +++ b/lib/Travel/Status/DE/ASEAG.pm @@ -6,7 +6,7 @@ use 5.010; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.02'; +our $VERSION = '2.00'; use parent 'Travel::Status::DE::URA'; @@ -44,7 +44,7 @@ Travel::Status::DE::ASEAG - unofficial ASEAG departure monitor. =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/URA.pm b/lib/Travel/Status/DE/URA.pm index e924ebc..474d636 100644 --- a/lib/Travel/Status/DE/URA.pm +++ b/lib/Travel/Status/DE/URA.pm @@ -7,7 +7,7 @@ use utf8; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.02'; +our $VERSION = '2.00'; # create CONSTANTS for different Return Types use constant { @@ -384,7 +384,7 @@ API" data providers (e.g. ASEAG) =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/URA/Result.pm b/lib/Travel/Status/DE/URA/Result.pm index 4d44ed3..aa48ace 100644 --- a/lib/Travel/Status/DE/URA/Result.pm +++ b/lib/Travel/Status/DE/URA/Result.pm @@ -8,7 +8,7 @@ use parent 'Class::Accessor'; use DateTime::Format::Duration; -our $VERSION = '1.02'; +our $VERSION = '2.00'; Travel::Status::DE::URA::Result->mk_ro_accessors( qw(datetime destination line line_id stop stop_id stop_indicator)); @@ -150,7 +150,7 @@ departure received by Travel::Status::DE::URA =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/URA/Stop.pm b/lib/Travel/Status/DE/URA/Stop.pm index bfe3a9a..d20fa9d 100644 --- a/lib/Travel/Status/DE/URA/Stop.pm +++ b/lib/Travel/Status/DE/URA/Stop.pm @@ -6,7 +6,7 @@ use 5.010; use parent 'Class::Accessor'; -our $VERSION = '1.02'; +our $VERSION = '2.00'; Travel::Status::DE::URA::Stop->mk_ro_accessors(qw(datetime name)); @@ -55,7 +55,7 @@ Travel::Status::DE::URA::Stop - Information about a stop =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION diff --git a/lib/Travel/Status/GB/TFL.pm b/lib/Travel/Status/GB/TFL.pm index dcf8bfd..51b4b0d 100644 --- a/lib/Travel/Status/GB/TFL.pm +++ b/lib/Travel/Status/GB/TFL.pm @@ -6,7 +6,7 @@ use 5.010; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -our $VERSION = '1.02'; +our $VERSION = '2.00'; use parent 'Travel::Status::DE::URA'; @@ -44,7 +44,7 @@ Travel::Status::GB::TFL - unofficial TFL departure monitor. =head1 VERSION -version 1.02 +version 2.00 =head1 DESCRIPTION |