diff --git a/Changelog b/Changelog
index 20ae7d0871a2b0eba388d94dd060f12dee599bac..e01e0f96e4622e3b8c494ef9fc13d4e12b2b55e3 100644
--- a/Changelog
+++ b/Changelog
@@ -1,5 +1,6 @@
-git HEAD
+Travel::Status::DE::DeutscheBahn 1.04 - Sun May 03 2015
 
+    * Result: Add type accessor
     * DeutscheBahn->new: Add lwp_options parameter to pass options to
       LWP::UserAgent->new
 
diff --git a/bin/db-ris b/bin/db-ris
index 91c899a48dd337788a13564cbf44a4ef69d2ade8..5ba1f1634f112d5c2d58a5e012fb2c869811b873 100755
--- a/bin/db-ris
+++ b/bin/db-ris
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 use 5.010;
 
-our $VERSION = '1.03';
+our $VERSION = '1.04';
 
 use Getopt::Long qw(:config no_ignore_case);
 use List::Util qw(first max);
@@ -147,7 +147,7 @@ B<db-ris> [B<-a>] [B<-d> I<date>] [B<-L>] [B<-m> I<motlist>] [B<-t> I<time>]
 
 =head1 VERSION
 
-version 1.03
+version 1.04
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/DeutscheBahn.pm b/lib/Travel/Status/DE/DeutscheBahn.pm
index 0a40b3bf55b931af3b74f77f1d7fdb6c8dc9069d..b3170e00020605614d767a9e0dfc0401fde43bca 100644
--- a/lib/Travel/Status/DE/DeutscheBahn.pm
+++ b/lib/Travel/Status/DE/DeutscheBahn.pm
@@ -12,7 +12,7 @@ use POSIX qw(strftime);
 use Travel::Status::DE::DeutscheBahn::Result;
 use XML::LibXML;
 
-our $VERSION = '1.03';
+our $VERSION = '1.04';
 
 sub new {
 	my ( $obj, %conf ) = @_;
@@ -288,7 +288,7 @@ arrival/departure monitor
 
 =head1 VERSION
 
-version 1.03
+version 1.04
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Status/DE/DeutscheBahn/Result.pm b/lib/Travel/Status/DE/DeutscheBahn/Result.pm
index 1f9f81c39adca9b0ed94d4cf110cf6264cb0ac24..ca61194a1b7072fe1923230b95e4d804ac11f0af 100644
--- a/lib/Travel/Status/DE/DeutscheBahn/Result.pm
+++ b/lib/Travel/Status/DE/DeutscheBahn/Result.pm
@@ -8,7 +8,7 @@ no if $] >= 5.018, warnings => "experimental::smartmatch";
 
 use parent 'Class::Accessor';
 
-our $VERSION = '1.03';
+our $VERSION = '1.04';
 
 Travel::Status::DE::DeutscheBahn::Result->mk_ro_accessors(
 	qw(date time train route_end route_raw platform info_raw));
@@ -180,7 +180,7 @@ arrival/departure received by Travel::Status::DE::DeutscheBahn
 
 =head1 VERSION
 
-version 1.03
+version 1.04
 
 =head1 DESCRIPTION