summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog9
-rwxr-xr-xbin/aseag-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
5 files changed, 17 insertions, 8 deletions
diff --git a/Changelog b/Changelog
index e49fc31..0595696 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,12 @@
+Travel::Status::DE::URA 0.04 - Thu Mar 12 2015
+
+ * New dependency: Text::CSV
+ * Fix ASEAG parser (was fragile and broken by changes in the backend output)
+ * TRavel::Status::DE::URA::Result: Add ->type accessor for compatibility
+ with other TRavel::Status modules (always returns "Bus" at the moment)
+ * Encoding is hard - it may be broken if your LWP::UserAgent or perl is
+ too old
+
Travel::Status::DE::URA 0.03 - Thu Jan 23 2014
* Result: Relative times (countdown, countdown_sec) are now computed
diff --git a/bin/aseag-m b/bin/aseag-m
index 38bf35c..d9a95aa 100755
--- a/bin/aseag-m
+++ b/bin/aseag-m
@@ -5,7 +5,7 @@ use 5.010;
no if $] >= 5.018, warnings => 'experimental::smartmatch';
-our $VERSION = '0.03';
+our $VERSION = '0.04';
binmode( STDOUT, ':encoding(utf-8)' );
@@ -208,7 +208,7 @@ B<aseag-m> [B<-abfprV>] [B<-l> I<lines>] [B<-s> I<timefmt> | B<-S> I<timefmt>]
=head1 VERSION
-version 0.03
+version 0.04
=head1 DESCRIPTION
diff --git a/lib/Travel/Status/DE/ASEAG.pm b/lib/Travel/Status/DE/ASEAG.pm
index e18fa7e..6689a7e 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 = '0.03';
+our $VERSION = '0.04';
use parent 'Travel::Status::DE::URA';
@@ -44,7 +44,7 @@ Travel::Status::DE::ASEAG - unofficial ASEAG departure monitor.
=head1 VERSION
-version 0.03
+version 0.04
=head1 DESCRIPTION
diff --git a/lib/Travel/Status/DE/URA.pm b/lib/Travel/Status/DE/URA.pm
index 13c0f66..19ab7a7 100644
--- a/lib/Travel/Status/DE/URA.pm
+++ b/lib/Travel/Status/DE/URA.pm
@@ -6,7 +6,7 @@ use 5.010;
no if $] >= 5.018, warnings => 'experimental::smartmatch';
-our $VERSION = '0.03';
+our $VERSION = '0.04';
use Carp qw(confess cluck);
use DateTime;
@@ -249,7 +249,7 @@ API" data providers (e.g. ASEAG)
=head1 VERSION
-version 0.03
+version 0.04
=head1 DESCRIPTION
diff --git a/lib/Travel/Status/DE/URA/Result.pm b/lib/Travel/Status/DE/URA/Result.pm
index 81b54a1..bf2f0b0 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 = '0.03';
+our $VERSION = '0.04';
Travel::Status::DE::URA::Result->mk_ro_accessors(
qw(datetime destination line line_id stop stop_id));
@@ -89,7 +89,7 @@ departure received by Travel::Status::DE::URA
=head1 VERSION
-version 0.03
+version 0.04
=head1 DESCRIPTION