From a956ddd5be0c79bf0263440bc9a32a4590340d00 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 28 Jan 2025 19:28:12 +0100 Subject: Release v0.02 --- Changelog | 7 +++++++ bin/dbris | 4 ++-- lib/Travel/Routing/DE/DBRIS.pm | 4 ++-- lib/Travel/Routing/DE/DBRIS/Connection.pm | 2 +- lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/Changelog b/Changelog index c7db812..cc60e65 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,10 @@ +Travel::Routing::DE::DBRIS 0.02 - Tue Jan 28 2025 + + * Add support for up to two stopovers + * Add first class option (--first-class / first_class) + * Add detailed passenger specification for price calculation + (--passengers / passengers) + Travel::Routing::DE::DBRIS 0.01 - Sun Jan 19 2025 * Initial release diff --git a/bin/dbris b/bin/dbris index a11a5c8..e2ea2a6 100755 --- a/bin/dbris +++ b/bin/dbris @@ -3,7 +3,7 @@ use strict; use warnings; use 5.020; -our $VERSION = '0.01'; +our $VERSION = '0.02'; use utf8; use DateTime; @@ -400,7 +400,7 @@ B [B<-d> I] [B<-t> I] [...] I =head1 VERSION -version 0.01 +version 0.02 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/DBRIS.pm b/lib/Travel/Routing/DE/DBRIS.pm index b19c7e9..c6f8e25 100644 --- a/lib/Travel/Routing/DE/DBRIS.pm +++ b/lib/Travel/Routing/DE/DBRIS.pm @@ -17,7 +17,7 @@ use LWP::UserAgent; use Travel::Status::DE::DBRIS; use Travel::Routing::DE::DBRIS::Connection; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Routing::DE::DBRIS->mk_ro_accessors(qw(earlier later)); @@ -352,7 +352,7 @@ Travel::Routing::DE::DBRIS - Interface to the bahn.de itinerary service =head1 VERSION -version 0.01 +version 0.02 =head1 DESCRIPTION diff --git a/lib/Travel/Routing/DE/DBRIS/Connection.pm b/lib/Travel/Routing/DE/DBRIS/Connection.pm index 5c2f6b8..2ad46d8 100644 --- a/lib/Travel/Routing/DE/DBRIS/Connection.pm +++ b/lib/Travel/Routing/DE/DBRIS/Connection.pm @@ -10,7 +10,7 @@ use parent 'Class::Accessor'; use DateTime::Duration; use Travel::Routing::DE::DBRIS::Connection::Segment; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Routing::DE::DBRIS::Connection->mk_ro_accessors( qw(changes diff --git a/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm b/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm index 8523f03..f2278ef 100644 --- a/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm +++ b/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm @@ -9,7 +9,7 @@ use parent 'Class::Accessor'; use DateTime::Duration; use Travel::Status::DE::DBRIS::Location; -our $VERSION = '0.01'; +our $VERSION = '0.02'; Travel::Routing::DE::DBRIS::Connection::Segment->mk_ro_accessors( qw( -- cgit v1.2.3