diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-03-12 13:31:50 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-03-12 13:31:50 +0100 |
commit | a18276e764bf4c451cb7087ff7e27429571797e8 (patch) | |
tree | b0df440267b6d3c981315ce4f16b03f04bc66da3 | |
parent | a0f1dcc6eb29ac4c4e85985a4ae4e5631a3f9910 (diff) |
version bump0.04
-rw-r--r-- | Changelog | 9 | ||||
-rwxr-xr-x | bin/aseag-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 |
5 files changed, 17 insertions, 8 deletions
@@ -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 |