diff options
-rw-r--r-- | Changelog | 5 | ||||
-rwxr-xr-x | bin/db-wagenreihung | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/DBWagenreihung.pm | 4 | ||||
-rw-r--r-- | lib/Travel/Status/DE/DBWagenreihung/Section.pm | 2 | ||||
-rw-r--r-- | lib/Travel/Status/DE/DBWagenreihung/Wagon.pm | 2 |
5 files changed, 11 insertions, 6 deletions
@@ -1,3 +1,8 @@ +Travel::Status::DE::DBWagenreihung 0.03 - Sun Apr 26 2020 + + * Wagenreihung: Add train_powertype function + * Wagon: Add train_no and uic_id accessors + Travel::Status::DE::DBWagenreihung 0.02 - Sun Jun 23 2019 * Add from_json option to constructor diff --git a/bin/db-wagenreihung b/bin/db-wagenreihung index e8d1c82..be59379 100755 --- a/bin/db-wagenreihung +++ b/bin/db-wagenreihung @@ -4,7 +4,7 @@ use warnings; use 5.020; use utf8; -our $VERSION = '0.02'; +our $VERSION = '0.03'; use Getopt::Long; use List::Util qw(min); @@ -160,7 +160,7 @@ B<db-wagenreihung> I<station> I<train-number> =head1 VERSION -version 0.02 +version 0.03 This is beta software: API and output format may change without notice. diff --git a/lib/Travel/Status/DE/DBWagenreihung.pm b/lib/Travel/Status/DE/DBWagenreihung.pm index 9935e10..32c1468 100644 --- a/lib/Travel/Status/DE/DBWagenreihung.pm +++ b/lib/Travel/Status/DE/DBWagenreihung.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.020; -our $VERSION = '0.02'; +our $VERSION = '0.03'; use Carp qw(cluck confess); use JSON; @@ -478,7 +478,7 @@ Travel::Status::DE::DBWagenreihung - Interface to Deutsche Bahn Wagon Order API. =head1 VERSION -version 0.02 +version 0.03 This is beta software. The API may change without notice. diff --git a/lib/Travel/Status/DE/DBWagenreihung/Section.pm b/lib/Travel/Status/DE/DBWagenreihung/Section.pm index 844f0ee..36f295d 100644 --- a/lib/Travel/Status/DE/DBWagenreihung/Section.pm +++ b/lib/Travel/Status/DE/DBWagenreihung/Section.pm @@ -7,7 +7,7 @@ use utf8; use parent 'Class::Accessor'; -our $VERSION = '0.02'; +our $VERSION = '0.03'; Travel::Status::DE::DBWagenreihung::Section->mk_ro_accessors( qw(name start_percent end_percent length_percent start_meters end_meters length_meters) diff --git a/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm b/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm index bda654b..53ac9e2 100644 --- a/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm +++ b/lib/Travel/Status/DE/DBWagenreihung/Wagon.pm @@ -8,7 +8,7 @@ use utf8; use parent 'Class::Accessor'; use Carp qw(cluck); -our $VERSION = '0.02'; +our $VERSION = '0.03'; Travel::Status::DE::DBWagenreihung::Wagon->mk_ro_accessors( qw(attributes class_type has_ac has_accessibility has_bahn_comfort has_bike_storage has_bistro has_compartments has_family_area |