diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-05-31 23:41:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-05-31 23:41:56 +0200 |
commit | 4f50886ba7a415ded18f5288bab5919aced86af7 (patch) | |
tree | 2f92c8d4a2e42ec8b53b31da4d7425fe80000837 | |
parent | 9cbf0881382baef851023add18989409d95b9ea5 (diff) |
initial release0.01
-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
diff --git a/Changelog b/Changelog new file mode 100644 index 0000000..f18b140 --- /dev/null +++ b/Changelog @@ -0,0 +1,5 @@ +Travel::Status::DE::DBWagenreihung 0.01 - Fri May 31 2019 + + * Initial release. wagen order and wagon type information for a specific + train at a specific station. Documentation is incomplete, API may change + without notice. diff --git a/bin/db-wagenreihung b/bin/db-wagenreihung index 59f6284..0e7d04a 100755 --- a/bin/db-wagenreihung +++ b/bin/db-wagenreihung @@ -4,7 +4,7 @@ use warnings; use 5.020; use utf8; -our $VERSION = '0.00'; +our $VERSION = '0.01'; use Getopt::Long; use List::Util qw(min); @@ -160,7 +160,7 @@ B<db-wagenreihung> I<station> I<train-number> =head1 VERSION -version 0.00 +version 0.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DBWagenreihung.pm b/lib/Travel/Status/DE/DBWagenreihung.pm index 2d50a0f..918dde9 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.00'; +our $VERSION = '0.01'; use Carp qw(cluck confess); use JSON; @@ -425,7 +425,7 @@ Travel::Status::DE::DBWagenreihung - Interface to Deutsche Bahn Wagon Order API. =head1 VERSION -version 0.00 +version 0.01 =head1 DESCRIPTION diff --git a/lib/Travel/Status/DE/DBWagenreihung/Section.pm b/lib/Travel/Status/DE/DBWagenreihung/Section.pm index 1c3bdf8..5954370 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.00'; +our $VERSION = '0.01'; 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 0d59314..626315a 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.00'; +our $VERSION = '0.01'; 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 |