Skip to content

Commit

Permalink
Release v2.22
Browse files Browse the repository at this point in the history
  • Loading branch information
derf committed Sep 1, 2023
1 parent d6b7c4e commit 0be807a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 13 deletions.
5 changes: 5 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Travel::Routing::DE::VRR 2.22 - Fri Sep 01 2023

* Rewrite code not to use Perl's formerly experimental and now deprecated
smartmatch features

Travel::Routing::DE::VRR 2.21 - Sat Jul 22 2023

* Add service VRR3
Expand Down
6 changes: 3 additions & 3 deletions bin/efa
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Exception::Class;
use Getopt::Long qw/:config no_ignore_case/;
use List::Util qw(first);

our $VERSION = '2.21';
our $VERSION = '2.22';
my $ignore_info;
my $efa;
my $efa_url = 'http://efa.vrr.de/vrr/XSLT_TRIP_REQUEST2';
Expand Down Expand Up @@ -481,7 +481,7 @@ efa - Command line client for EFA-based public transit routing services
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down Expand Up @@ -798,7 +798,7 @@ to to request via -> to.
=head1 AUTHOR
Copyright (C) 2009-2021 by Birte Kristina Friesel E<lt>derf@finalrewind.orgE<gt>
Copyright (C) 2009-2023 by Birte Kristina Friesel E<lt>derf@finalrewind.orgE<gt>
=head1 LICENSE
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Routing/DE/EFA.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use Exception::Class (
},
);

our $VERSION = '2.21';
our $VERSION = '2.22';

sub set_time {
my ( $self, %conf ) = @_;
Expand Down Expand Up @@ -981,7 +981,7 @@ Travel::Routing::DE::EFA - unofficial interface to EFA-based itinerary services
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Routing/DE/EFA/Route.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use parent 'Class::Accessor';

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

our $VERSION = '2.21';
our $VERSION = '2.22';

Travel::Routing::DE::EFA::Route->mk_ro_accessors(
qw(duration ticket_text ticket_type fare_adult fare_child vehicle_time));
Expand Down Expand Up @@ -52,7 +52,7 @@ Travel::Routing::DE::EFA::Route - Single route (connection) between two points
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Routing/DE/EFA/Route/Message.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'Class::Accessor';

our $VERSION = '2.21';
our $VERSION = '2.22';

Travel::Routing::DE::EFA::Route::Message->mk_ro_accessors(
qw(is_detailed summary subject subtitle raw_content));
Expand Down Expand Up @@ -58,7 +58,7 @@ route or route part.
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Routing/DE/EFA/Route/Part.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use 5.010;

use parent 'Class::Accessor';

our $VERSION = '2.21';
our $VERSION = '2.22';

my %occupancy = (
MANY_SEATS => 1,
Expand Down Expand Up @@ -168,7 +168,7 @@ points, without interchanges
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions lib/Travel/Routing/DE/VRR.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use 5.010;

our $VERSION = '2.21';
our $VERSION = '2.22';

use parent 'Travel::Routing::DE::EFA';

Expand Down Expand Up @@ -47,7 +47,7 @@ Travel::Routing::DE::VRR - unofficial interface to the efa.vrr.de German itinera
=head1 VERSION
version 2.21
version 2.22
=head1 DESCRIPTION
Expand Down

0 comments on commit 0be807a

Please sign in to comment.