diff options
| author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-17 18:11:44 +0200 |
|---|---|---|
| committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-06-17 18:11:44 +0200 |
| commit | da4184e35138ce9da4a682814ab5e72b5129b1f3 (patch) | |
| tree | 004444fe9e02e59c3dcb9ab6b67b82e002b8cb54 | |
| parent | 9c16d5b5242b7a366dcdf5445c4e36d5510653e6 (diff) | |
Release v0.020.02
| -rw-r--r-- | Changelog | 9 | ||||
| -rwxr-xr-x | bin/motis-m | 4 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS.pm | 4 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/Polyline.pm | 2 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/Services.pm.PL | 2 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/Stop.pm | 2 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/Stopover.pm | 2 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/Trip.pm | 2 | ||||
| -rw-r--r-- | lib/Travel/Status/MOTIS/TripAtStopover.pm | 2 |
9 files changed, 19 insertions, 10 deletions
@@ -1,3 +1,12 @@ +Travel::Status::MOTIS 0.02 - Tue Jun 17 2025 + + * motis-m: Fix --json for trip lookups (patch by networkException) + * MOTIS: Use v2 API for trip lookups (patch by networkException) + * MOTIS: Add time_zone parameter, allowing users to receive times in the + specified time_zone rather than the system's local time zone + (patch by networkException) + * Trip: Add route_text_color accessor (patch by networkException) + Travel::Status::MOTIS 0.01 - Sun Apr 20 2025 * Initial release diff --git a/bin/motis-m b/bin/motis-m index 036d880..6f22c75 100755 --- a/bin/motis-m +++ b/bin/motis-m @@ -3,7 +3,7 @@ use strict; use warnings; use 5.020; -our $VERSION = '0.01'; +our $VERSION = '0.02'; use utf8; use DateTime; @@ -413,7 +413,7 @@ B<motis-m> [B<-s> I<service>] B<?>I<query>|I<lat>B<:>I<lon> =head1 VERSION -version 0.01 +version 0.02 =head1 DESCRIPTION diff --git a/lib/Travel/Status/MOTIS.pm b/lib/Travel/Status/MOTIS.pm index df606dc..a4be9ec 100644 --- a/lib/Travel/Status/MOTIS.pm +++ b/lib/Travel/Status/MOTIS.pm @@ -23,7 +23,7 @@ use Travel::Status::MOTIS::Trip; use Travel::Status::MOTIS::Stopover; use Travel::Status::MOTIS::Stop; -our $VERSION = '0.01'; +our $VERSION = '0.02'; # {{{ Endpoint Definition @@ -440,7 +440,7 @@ Non-blocking variant; =head1 VERSION -version 0.01 +version 0.02 =head1 DESCRIPTION diff --git a/lib/Travel/Status/MOTIS/Polyline.pm b/lib/Travel/Status/MOTIS/Polyline.pm index 4bf5cde..96ba87d 100644 --- a/lib/Travel/Status/MOTIS/Polyline.pm +++ b/lib/Travel/Status/MOTIS/Polyline.pm @@ -17,7 +17,7 @@ use parent 'Exporter'; our @EXPORT_OK = qw(decode_polyline); -our $VERSION = '0.01'; +our $VERSION = '0.02'; # Translated this php script # <http://unitstep.net/blog/2008/08/02/decoding-google-maps-encoded-polylines-using-php/> diff --git a/lib/Travel/Status/MOTIS/Services.pm.PL b/lib/Travel/Status/MOTIS/Services.pm.PL index 8331b6c..7b26684 100644 --- a/lib/Travel/Status/MOTIS/Services.pm.PL +++ b/lib/Travel/Status/MOTIS/Services.pm.PL @@ -100,7 +100,7 @@ use warnings; use 5.014; use utf8; -our $VERSION = '0.01'; +our $VERSION = '0.02'; # Source <https://github.com/public-transport/transport-apis>. # Many thanks to Jannis R / @derhuerst and all contributors for maintaining diff --git a/lib/Travel/Status/MOTIS/Stop.pm b/lib/Travel/Status/MOTIS/Stop.pm index 9a11544..84cd1a6 100644 --- a/lib/Travel/Status/MOTIS/Stop.pm +++ b/lib/Travel/Status/MOTIS/Stop.pm @@ -6,7 +6,7 @@ use 5.020; use parent 'Class::Accessor'; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Status::MOTIS::Stop->mk_ro_accessors( qw( diff --git a/lib/Travel/Status/MOTIS/Stopover.pm b/lib/Travel/Status/MOTIS/Stopover.pm index 6535e79..f75393c 100644 --- a/lib/Travel/Status/MOTIS/Stopover.pm +++ b/lib/Travel/Status/MOTIS/Stopover.pm @@ -8,7 +8,7 @@ use parent 'Class::Accessor'; use DateTime::Format::ISO8601; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Status::MOTIS::Stopover->mk_ro_accessors( qw( diff --git a/lib/Travel/Status/MOTIS/Trip.pm b/lib/Travel/Status/MOTIS/Trip.pm index e795434..626663a 100644 --- a/lib/Travel/Status/MOTIS/Trip.pm +++ b/lib/Travel/Status/MOTIS/Trip.pm @@ -11,7 +11,7 @@ use DateTime::Format::ISO8601; use Travel::Status::MOTIS::Stop; use Travel::Status::MOTIS::Polyline qw(decode_polyline); -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Status::MOTIS::Trip->mk_ro_accessors( qw( diff --git a/lib/Travel/Status/MOTIS/TripAtStopover.pm b/lib/Travel/Status/MOTIS/TripAtStopover.pm index 9e7fec1..3aed288 100644 --- a/lib/Travel/Status/MOTIS/TripAtStopover.pm +++ b/lib/Travel/Status/MOTIS/TripAtStopover.pm @@ -8,7 +8,7 @@ use DateTime::Format::ISO8601; use parent 'Class::Accessor'; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Status::MOTIS::TripAtStopover->mk_ro_accessors( qw( |
