summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog5
-rwxr-xr-xbin/dbris4
-rw-r--r--lib/Travel/Routing/DE/DBRIS.pm4
-rw-r--r--lib/Travel/Routing/DE/DBRIS/Connection.pm2
-rw-r--r--lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm2
-rw-r--r--lib/Travel/Routing/DE/DBRIS/Offer.pm2
6 files changed, 12 insertions, 7 deletions
diff --git a/Changelog b/Changelog
index b800425..0cdd186 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,8 @@
+Travel::Routing::DE::DBRIS 0.06 - Thu Feb 20 2025
+
+ * Handle gzip-compressed bahn.de responses -- older versions of this
+ module no longer work
+
Travel::Routing::DE::DBRIS 0.05 - Sat Feb 08 2025
* dbris: Bump dependency version to really fix --json
diff --git a/bin/dbris b/bin/dbris
index ef3b141..21da9da 100755
--- a/bin/dbris
+++ b/bin/dbris
@@ -3,7 +3,7 @@ use strict;
use warnings;
use 5.020;
-our $VERSION = '0.05';
+our $VERSION = '0.06';
use utf8;
use DateTime;
@@ -533,7 +533,7 @@ B<dbris> [B<-d> I<DD.MM.YYYY>] [B<-a>|B<-t> I<HH:MM>] [...] I<from-stop>
=head1 VERSION
-version 0.05
+version 0.06
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/DBRIS.pm b/lib/Travel/Routing/DE/DBRIS.pm
index 1d2e6b1..2475211 100644
--- a/lib/Travel/Routing/DE/DBRIS.pm
+++ b/lib/Travel/Routing/DE/DBRIS.pm
@@ -19,7 +19,7 @@ use Travel::Status::DE::DBRIS;
use Travel::Routing::DE::DBRIS::Connection;
use Travel::Routing::DE::DBRIS::Offer;
-our $VERSION = '0.05';
+our $VERSION = '0.06';
Travel::Routing::DE::DBRIS->mk_ro_accessors(qw(earlier later));
@@ -413,7 +413,7 @@ Travel::Routing::DE::DBRIS - Interface to the bahn.de itinerary service
=head1 VERSION
-version 0.05
+version 0.06
=head1 DESCRIPTION
diff --git a/lib/Travel/Routing/DE/DBRIS/Connection.pm b/lib/Travel/Routing/DE/DBRIS/Connection.pm
index b03a2cb..55f8ee2 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.05';
+our $VERSION = '0.06';
Travel::Routing::DE::DBRIS::Connection->mk_ro_accessors(
qw(changes feasibility is_cancelled is_unscheduled is_unlikely
diff --git a/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm b/lib/Travel/Routing/DE/DBRIS/Connection/Segment.pm
index e327125..5ee4891 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.05';
+our $VERSION = '0.06';
Travel::Routing::DE::DBRIS::Connection::Segment->mk_ro_accessors(
qw(
diff --git a/lib/Travel/Routing/DE/DBRIS/Offer.pm b/lib/Travel/Routing/DE/DBRIS/Offer.pm
index 8a29c9c..6246097 100644
--- a/lib/Travel/Routing/DE/DBRIS/Offer.pm
+++ b/lib/Travel/Routing/DE/DBRIS/Offer.pm
@@ -7,7 +7,7 @@ use utf8;
use parent 'Class::Accessor';
-our $VERSION = '0.05';
+our $VERSION = '0.06';
Travel::Routing::DE::DBRIS::Offer->mk_ro_accessors(
qw(class name price price_unit is_upsell is_cross_sell needs_context));