summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog16
-rwxr-xr-xbin/ura-m4
-rw-r--r--lib/Travel/Status/DE/ASEAG.pm4
-rw-r--r--lib/Travel/Status/DE/URA.pm4
-rw-r--r--lib/Travel/Status/DE/URA/Result.pm4
-rw-r--r--lib/Travel/Status/DE/URA/Stop.pm4
-rw-r--r--lib/Travel/Status/GB/TFL.pm4
7 files changed, 28 insertions, 12 deletions
diff --git a/Changelog b/Changelog
index 6a09b4d..4d4a40c 100644
--- a/Changelog
+++ b/Changelog
@@ -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
diff --git a/bin/ura-m b/bin/ura-m
index d10ed0d..7fc037b 100755
--- a/bin/ura-m
+++ b/bin/ura-m
@@ -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