Unverified Commit 6f47465a authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Release v0.16

parent 3f726df6
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
Travel::Status::DE::DBWagenreihung 0.16 - Wed Jul 31 2024

    * Carriage: (re-)add amenity and first/second class accessors

Travel::Status::DE::DBWagenreihung 0.15 - Tue Jul 30 2024
Travel::Status::DE::DBWagenreihung 0.15 - Tue Jul 30 2024


    * Switch to new bahn.de API; the one used until 0.14 has been discontinued
    * Switch to new bahn.de API; the one used until 0.14 has been discontinued
+2 −2
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@ use warnings;
use 5.020;
use 5.020;
use utf8;
use utf8;


our $VERSION = '0.15';
our $VERSION = '0.16';


use Getopt::Long;
use Getopt::Long;
use List::Util qw(min);
use List::Util qw(min);
@@ -188,7 +188,7 @@ B<db-wagenreihung> I<station> I<train-number>


=head1 VERSION
=head1 VERSION


version 0.15
version 0.16


This is beta software: API and output format may change without notice.
This is beta software: API and output format may change without notice.


+2 −2
Original line number Original line Diff line number Diff line
@@ -15,7 +15,7 @@ use Travel::Status::DE::DBWagenreihung::Group;
use Travel::Status::DE::DBWagenreihung::Sector;
use Travel::Status::DE::DBWagenreihung::Sector;
use Travel::Status::DE::DBWagenreihung::Carriage;
use Travel::Status::DE::DBWagenreihung::Carriage;


our $VERSION = '0.15';
our $VERSION = '0.16';


Travel::Status::DE::DBWagenreihung->mk_ro_accessors(
Travel::Status::DE::DBWagenreihung->mk_ro_accessors(
	qw(direction platform train_type));
	qw(direction platform train_type));
@@ -332,7 +332,7 @@ Travel::Status::DE::DBWagenreihung - Interface to Deutsche Bahn carriage formati


=head1 VERSION
=head1 VERSION


version 0.15
version 0.16


This is beta software. The API may change without notice.
This is beta software. The API may change without notice.


+1 −1
Original line number Original line Diff line number Diff line
@@ -8,7 +8,7 @@ use utf8;
use parent 'Class::Accessor';
use parent 'Class::Accessor';
use Carp qw(cluck);
use Carp qw(cluck);


our $VERSION = '0.15';
our $VERSION = '0.16';
Travel::Status::DE::DBWagenreihung::Carriage->mk_ro_accessors(
Travel::Status::DE::DBWagenreihung::Carriage->mk_ro_accessors(
	qw(class_type is_closed is_dosto is_locomotive is_powercar
	qw(class_type is_closed is_dosto is_locomotive is_powercar
	  number model section uic_id type
	  number model section uic_id type
+1 −1
Original line number Original line Diff line number Diff line
@@ -8,7 +8,7 @@ use utf8;
use parent 'Class::Accessor';
use parent 'Class::Accessor';
use List::Util qw(uniq);
use List::Util qw(uniq);


our $VERSION = '0.15';
our $VERSION = '0.16';


Travel::Status::DE::DBWagenreihung::Group->mk_ro_accessors(
Travel::Status::DE::DBWagenreihung::Group->mk_ro_accessors(
	qw(train_no train_type description desc_short destination has_sectors model series start_percent end_percent)
	qw(train_no train_type description desc_short destination has_sectors model series start_percent end_percent)
Loading