diff --git a/Changelog b/Changelog
index 81e9660cdeaef8cfed1de4aa75560c785ee1aa26..ff8dabe1e6f66059a62a02c52f4942bc6495e611 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,8 @@
+Travel::Status::DE::DeutscheBahn 3.01 - Sat Jun 06 2020
+
+    * Fix support for ÖBB and other backends which recently switched from
+      two- to four-digit years
+
 Travel::Status::DE::DeutscheBahn 3.00 - Sat May 09 2020
 
     * Result: The date, datetime, and time accessors now report realtime
diff --git a/bin/hafas-m b/bin/hafas-m
index 033f1895fd972ff6d9682e56dcd49be4783d767f..048e07784b15a69213e944e597eb58e968b0a263 100755
--- a/bin/hafas-m
+++ b/bin/hafas-m
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use 5.014;
 
-our $VERSION = '3.00';
+our $VERSION = '3.01';
 
 use Encode qw(decode);
 use Getopt::Long qw(:config no_ignore_case);
@@ -212,7 +212,7 @@ B<hafas-m> [B<-d> I<date>] [B<-t> I<time>] [B<-m> I<motlist>]
 
 =head1 VERSION
 
-version 3.00
+version 3.01
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm
index d64ad05b7aa01c2c338a5279c621f77d7ca1b8e9..a55ccddf15203a5352491a915354d65557344ade 100644
--- a/lib/Travel/Status/DE/DeutscheBahn.pm
+++ b/lib/Travel/Status/DE/DeutscheBahn.pm
@@ -6,7 +6,7 @@ use 5.014;
 
 use parent 'Travel::Status::DE::HAFAS';
 
-our $VERSION = '3.00';
+our $VERSION = '3.01';
 
 sub new {
 	my ( $class, %opt ) = @_;
@@ -49,7 +49,7 @@ monitor operated by Deutsche Bahn
 
 =head1 VERSION
 
-version 3.00
+version 3.01
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/HAFAS.pm b/lib/Travel/Status/DE/HAFAS.pm
index 847be90a81e1554ca5b49fc298617fdca284b1f2..e14587bfed677f929e846312a856aedd68bf22af 100644
--- a/lib/Travel/Status/DE/HAFAS.pm
+++ b/lib/Travel/Status/DE/HAFAS.pm
@@ -16,7 +16,7 @@ use Travel::Status::DE::HAFAS::Result;
 use Travel::Status::DE::HAFAS::StopFinder;
 use XML::LibXML;
 
-our $VERSION = '3.00';
+our $VERSION = '3.01';
 
 my %hafas_instance = (
 
@@ -434,7 +434,7 @@ monitors
 
 =head1 VERSION
 
-version 3.00
+version 3.01
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/HAFAS/Result.pm b/lib/Travel/Status/DE/HAFAS/Result.pm
index 2ed5134f431c87d910ffd0e30b8727b99dcf1efd..fc56091f4ae2f91f7ffc15e71cde6b8140d2f719 100644
--- a/lib/Travel/Status/DE/HAFAS/Result.pm
+++ b/lib/Travel/Status/DE/HAFAS/Result.pm
@@ -8,7 +8,7 @@ no if $] >= 5.018, warnings => 'experimental::smartmatch';
 
 use parent 'Class::Accessor';
 
-our $VERSION = '3.00';
+our $VERSION = '3.01';
 
 Travel::Status::DE::HAFAS::Result->mk_ro_accessors(
 	qw(sched_date date sched_datetime datetime info raw_e_delay raw_delay
@@ -205,7 +205,7 @@ arrival/departure received by Travel::Status::DE::HAFAS
 
 =head1 VERSION
 
-version 3.00
+version 3.01
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm
index 3affed7115c0b0a62a7640b1feff64e05ea28b45..24d16b54cd4103f4377068e47c76fd7295498c96 100644
--- a/lib/Travel/Status/DE/HAFAS/StopFinder.pm
+++ b/lib/Travel/Status/DE/HAFAS/StopFinder.pm
@@ -12,7 +12,7 @@ use Encode qw(decode);
 use JSON;
 use LWP::UserAgent;
 
-our $VERSION = '3.00';
+our $VERSION = '3.01';
 
 sub new {
 	my ( $obj, %conf ) = @_;
@@ -123,7 +123,7 @@ finder services
 
 =head1 VERSION
 
-version 3.00
+version 3.01
 
 =head1 DESCRIPTION