Unverified Commit d315aea5 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Release v0.04

parent 44c5cb4e
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
Travel::Routing::DE::DBRIS 0.04 - Fri Feb 07 2025

    * Connection, Segment: TO_JSON: convert DateTime and Duration objects
    * dbris: Fix --json
    * dbris: Add -a / --arrival option
    * dbris: Add -o / --with-offers option (work in progress)
    * dbris: Add --with-upsell-offers option

Travel::Routing::DE::DBRIS 0.03 - Sun Feb 02 2025

    * Connection: Add is_cancelled, is_unscheduled, is_unlikely accessors
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.020;

our $VERSION = '0.03';
our $VERSION = '0.04';

use utf8;
use DateTime;
@@ -529,7 +529,7 @@ B<dbris> [B<-d> I<DD.MM.YYYY>] [B<-a>|B<-t> I<HH:MM>] [...] I<from-stop>

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ use Travel::Status::DE::DBRIS;
use Travel::Routing::DE::DBRIS::Connection;
use Travel::Routing::DE::DBRIS::Offer;

our $VERSION = '0.03';
our $VERSION = '0.04';

Travel::Routing::DE::DBRIS->mk_ro_accessors(qw(earlier later));

@@ -402,7 +402,7 @@ Travel::Routing::DE::DBRIS - Interface to the bahn.de itinerary service

=head1 VERSION

version 0.03
version 0.04

=head1 DESCRIPTION

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ use parent 'Class::Accessor';
use DateTime::Duration;
use Travel::Routing::DE::DBRIS::Connection::Segment;

our $VERSION = '0.03';
our $VERSION = '0.04';

Travel::Routing::DE::DBRIS::Connection->mk_ro_accessors(
	qw(changes feasibility is_cancelled is_unscheduled is_unlikely
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ use parent 'Class::Accessor';
use DateTime::Duration;
use Travel::Status::DE::DBRIS::Location;

our $VERSION = '0.03';
our $VERSION = '0.04';

Travel::Routing::DE::DBRIS::Connection::Segment->mk_ro_accessors(
	qw(
Loading