Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Jan 17, 2017
1 parent 255a67f commit 5fdcd34
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion Changelog
@@ -1,7 +1,12 @@
Travel::Status::DE::URA UNRELEASED
Travel::Status::DE::URA 2.01 - Tue Jan 17 2017

* Add support for departures in Mainz supplied by the local URA service
(MvgMainz)
* ura-m: Show stop-specific messages (if present)
* New module: Travel::Status::DE::MvgMainz
* Travel::Status::DE::URA->new: add option with_messages
* Travel::Status::DE::URA: add ->messages_by_stop_id and
->messages_by_stop_name

Travel::Status::DE::URA 2.00 - Wed Sep 07 2016

Expand Down
4 changes: 2 additions & 2 deletions bin/ura-m
Expand Up @@ -5,7 +5,7 @@ use 5.010;

no if $] >= 5.018, warnings => 'experimental::smartmatch';

our $VERSION = '2.00';
our $VERSION = '2.01';

binmode( STDOUT, ':encoding(utf-8)' );

Expand Down Expand Up @@ -304,7 +304,7 @@ B<ura-m> [B<-s> I<service>] [B<-pV>] [B<-l> I<lines>] [B<-o> I<outputtypes>]
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/DE/ASEAG.pm
Expand Up @@ -6,7 +6,7 @@ use 5.010;

no if $] >= 5.018, warnings => 'experimental::smartmatch';

our $VERSION = '2.00';
our $VERSION = '2.01';

use parent 'Travel::Status::DE::URA';

Expand Down Expand Up @@ -44,7 +44,7 @@ Travel::Status::DE::ASEAG - unofficial ASEAG departure monitor.
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/DE/MvgMainz.pm
Expand Up @@ -6,7 +6,7 @@ use 5.010;

no if $] >= 5.018, warnings => 'experimental::smartmatch';

our $VERSION = '2.00';
our $VERSION = '2.01';

use parent 'Travel::Status::DE::URA';

Expand Down Expand Up @@ -44,7 +44,7 @@ Travel::Status::DE::MvgMainz - unofficial MVG departure monitor.
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/DE/URA.pm
Expand Up @@ -7,7 +7,7 @@ use utf8;

no if $] >= 5.018, warnings => 'experimental::smartmatch';

our $VERSION = '2.00';
our $VERSION = '2.01';

# create CONSTANTS for different Return Types
use constant {
Expand Down Expand Up @@ -425,7 +425,7 @@ API" data providers (e.g. ASEAG)
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/DE/URA/Result.pm
Expand Up @@ -8,7 +8,7 @@ use parent 'Class::Accessor';

use DateTime::Format::Duration;

our $VERSION = '2.00';
our $VERSION = '2.01';

Travel::Status::DE::URA::Result->mk_ro_accessors(
qw(datetime destination line line_id stop stop_id stop_indicator));
Expand Down Expand Up @@ -150,7 +150,7 @@ departure received by Travel::Status::DE::URA
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/DE/URA/Stop.pm
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'Class::Accessor';

our $VERSION = '2.00';
our $VERSION = '2.01';

Travel::Status::DE::URA::Stop->mk_ro_accessors(qw(datetime name));

Expand Down Expand Up @@ -55,7 +55,7 @@ Travel::Status::DE::URA::Stop - Information about a stop
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Status/GB/TFL.pm
Expand Up @@ -6,7 +6,7 @@ use 5.010;

no if $] >= 5.018, warnings => 'experimental::smartmatch';

our $VERSION = '2.00';
our $VERSION = '2.01';

use parent 'Travel::Status::DE::URA';

Expand Down Expand Up @@ -44,7 +44,7 @@ Travel::Status::GB::TFL - unofficial TFL departure monitor.
=head1 VERSION
version 2.00
version 2.01
=head1 DESCRIPTION
Expand Down

0 comments on commit 5fdcd34

Please sign in to comment.