Commit 47bff7bf authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

version bump

parent 1574bc0c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
git HEAD
Travel::Routing::DE::VRR 2.06 - Sat Aug 02 2014

    * Route::Part: Add {arrival,departure}_{route,station}maps accessors
    * efa: Add -m, --maps option
    * Fix exclude / --exclude (didn't work at all previously)
    * efa: Add -m / --maps option
    * Fix exclude / --exclude (didn't work at all previously, possibly
      because of a server-side API change)

Travel::Routing::DE::VRR 2.05 - Mon Mar 03 2014

+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ use Travel::Routing::DE::EFA;
use Exception::Class;
use Getopt::Long qw/:config no_ignore_case/;

our $VERSION = '2.05';
our $VERSION = '2.06';
my $ignore_info = 'Fahrradmitnahme';
my $efa;
my $efa_url = 'http://efa.vrr.de/vrr/XSLT_TRIP_REQUEST2';
@@ -299,7 +299,7 @@ efa - unofficial efa.vrr.de command line client

=head1 VERSION

version 2.05
version 2.06

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ use Exception::Class (
	},
);

our $VERSION = '2.05';
our $VERSION = '2.06';

sub set_time {
	my ( $self, %conf ) = @_;
@@ -767,7 +767,7 @@ Travel::Routing::DE::EFA - unofficial interface to EFA-based itinerary services

=head1 VERSION

version 2.05
version 2.06

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ use parent 'Class::Accessor';

use Travel::Routing::DE::EFA::Route::Part;

our $VERSION = '2.05';
our $VERSION = '2.06';

Travel::Routing::DE::EFA::Route->mk_ro_accessors(
	qw(duration ticket_text ticket_type fare_adult fare_child vehicle_time));
@@ -52,7 +52,7 @@ Travel::Routing::DE::EFA::Route - Single route (connection) between two points

=head1 VERSION

version 2.05
version 2.06

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ use 5.010;

use parent 'Class::Accessor';

our $VERSION = '2.05';
our $VERSION = '2.06';

Travel::Routing::DE::EFA::Route::Part->mk_ro_accessors(
	qw(arrival_platform arrival_stop
@@ -110,7 +110,7 @@ points, without interchanges

=head1 VERSION

version 2.05
version 2.06

=head1 DESCRIPTION

Loading