summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2023-11-25 17:49:35 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2023-11-25 17:49:35 +0100
commita52bb5395e62279a0c97db16abe0f32cc2edbdc6 (patch)
tree05aa992c0168d19ebb1a9c6293c99924e1a02320
parent288f1a74ec940e3fc6494b4ba37b3d71924e4eb3 (diff)
Release v0.020.02
-rw-r--r--Changelog13
-rwxr-xr-xbin/hafas4
-rw-r--r--lib/Travel/Routing/DE/HAFAS.pm4
-rw-r--r--lib/Travel/Routing/DE/HAFAS/Connection.pm4
-rw-r--r--lib/Travel/Routing/DE/HAFAS/Connection/Section.pm4
-rw-r--r--lib/Travel/Routing/DE/HAFAS/Utils.pm2
6 files changed, 22 insertions, 9 deletions
diff --git a/Changelog b/Changelog
index b2546d7..b5a30ce 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,16 @@
+Travel::Routing::DE::HAFAS 0.02 - Sat Nov 25 2023
+
+ * hafas: Add -f / --full-route option
+ * hafas: Fix -vv / -vvv support
+ * Use Travel::Status::DE::HAFAS::Location for location data
+ * Remove Travel::Routing::DE::HAFAS::Location
+ * Use Travel::Status::DE::HAFAS::Journey for journey data
+ * Section: add load accessor
+ * Section: add journey accessor
+ * Section: remove operator, id, name ,category ,category_long, class,
+ number ,line ,line_no, delay, direction accessors. Use journey->operator,
+ journey->id, etc. instead.
+
Travel::Routing::DE::HAFAS 0.01 - Thu Nov 16 2023
* Initial release
diff --git a/bin/hafas b/bin/hafas
index ab8e97b..55d4321 100755
--- a/bin/hafas
+++ b/bin/hafas
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.014;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
use utf8;
use DateTime;
@@ -430,7 +430,7 @@ B<hafas> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>]
=head1 VERSION
-version 0.01
+version 0.02
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/HAFAS.pm b/lib/Travel/Routing/DE/HAFAS.pm
index ec5689b..3c768be 100644
--- a/lib/Travel/Routing/DE/HAFAS.pm
+++ b/lib/Travel/Routing/DE/HAFAS.pm
@@ -18,7 +18,7 @@ use Travel::Routing::DE::HAFAS::Connection;
use Travel::Status::DE::HAFAS::Location;
use Travel::Status::DE::HAFAS::Message;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
# {{{ Endpoint Definition
@@ -661,7 +661,7 @@ Travel::Routing::DE::HAFAS - Interface to HAFAS itinerary services
=head1 VERSION
-version 0.01
+version 0.02
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/HAFAS/Connection.pm b/lib/Travel/Routing/DE/HAFAS/Connection.pm
index 1600ddf..67cf0bd 100644
--- a/lib/Travel/Routing/DE/HAFAS/Connection.pm
+++ b/lib/Travel/Routing/DE/HAFAS/Connection.pm
@@ -11,7 +11,7 @@ use DateTime::Duration;
use Travel::Routing::DE::HAFAS::Utils;
use Travel::Routing::DE::HAFAS::Connection::Section;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
Travel::Routing::DE::HAFAS::Connection->mk_ro_accessors(
qw(changes duration sched_dep rt_dep sched_arr rt_arr dep arr dep_platform arr_platform dep_loc arr_loc dep_cancelled arr_cancelled is_cancelled load)
@@ -181,7 +181,7 @@ Travel::Routing::DE::HAFAS::Connection - A single connection between two stops
=head1 VERSION
-version 0.01
+version 0.02
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm b/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm
index 220b392..3977f64 100644
--- a/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm
+++ b/lib/Travel/Routing/DE/HAFAS/Connection/Section.pm
@@ -11,7 +11,7 @@ use DateTime::Duration;
use Travel::Routing::DE::HAFAS::Utils;
use Travel::Status::DE::HAFAS::Journey;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
Travel::Routing::DE::HAFAS::Connection::Section->mk_ro_accessors(
qw(type schep_dep rt_dep sched_arr rt_arr dep arr arr_delay dep_delay journey distance duration transfer_duration dep_loc arr_loc
@@ -181,7 +181,7 @@ Travel::Routing::DE::HAFAS::Connection::Section - A single trip between two stop
=head1 VERSION
-version 0.01
+version 0.02
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/HAFAS/Utils.pm b/lib/Travel/Routing/DE/HAFAS/Utils.pm
index d86768a..c27f68b 100644
--- a/lib/Travel/Routing/DE/HAFAS/Utils.pm
+++ b/lib/Travel/Routing/DE/HAFAS/Utils.pm
@@ -43,7 +43,7 @@ None.
=head1 VERSION
-version 0.01
+version 0.02
=head1 METHODS