diff --git a/Build.PL b/Build.PL
index 8bfc4d2dd6088fe23d0c3c2317eb623d175874db..8de9956ad6bfb0abc528329431de485cefeff2e7 100644
--- a/Build.PL
+++ b/Build.PL
@@ -7,6 +7,7 @@ use Module::Build;
 Module::Build->new(
 
 	build_requires => {
+		'File::Slurp' => 0,
 		'Test::Compile' => 0,
 		'Test::Fatal' => 0,
 		'Test::More' => 0,
diff --git a/Changelog b/Changelog
index 52cfa5374680f7f9c65acc22cf2fa3ee17a09e77..b7c79715a82cb11e648b2fe79a8303e1e5826280 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,4 @@
-git HEAD
+Travel::Routing::DE::VRR 2.00 - Sun Dec 11 2011
 
     * Now uses the efa.vrr.de XML interface
     * properly decode UTF-8 strings
diff --git a/bin/efa b/bin/efa
index 864beea27ac013c64d3b8be7ad1998dc523b93d6..ccb7feb0a6e1df94260c63f395db8c7530fe7dc0 100755
--- a/bin/efa
+++ b/bin/efa
@@ -12,7 +12,7 @@ use Travel::Routing::DE::VRR;
 use Exception::Class;
 use Getopt::Long qw/:config no_ignore_case/;
 
-our $VERSION = '1.06';
+our $VERSION = '2.00';
 my $ignore_info = 'Fahrradmitnahme';
 my $efa;
 my ( @from, @to, @via, $from_type, $to_type, $via_type );
@@ -259,7 +259,7 @@ efa - unofficial efa.vrr.de command line client
 
 =head1 VERSION
 
-version 1.06
+version 2.00
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Routing/DE/VRR.pm b/lib/Travel/Routing/DE/VRR.pm
index afa2ffe86e00c4324c6209731afcbea952d20707..467da88aca40f5a63cd9cb161abeea7a19fc99df 100644
--- a/lib/Travel/Routing/DE/VRR.pm
+++ b/lib/Travel/Routing/DE/VRR.pm
@@ -37,7 +37,7 @@ use Exception::Class (
 	},
 );
 
-our $VERSION = '1.06';
+our $VERSION = '2.00';
 
 sub set_time {
 	my ( $self, %conf ) = @_;
@@ -683,7 +683,7 @@ Travel::Routing::DE::VRR - unofficial interface to the efa.vrr.de German itinera
 
 =head1 VERSION
 
-version 1.06
+version 2.00
 
 =head1 DESCRIPTION
 
@@ -692,7 +692,7 @@ You pass it the start/stop of your journey, maybe a time and a date and more
 details, and it returns the up-to-date scheduled connections between those two
 stops.
 
-It uses B<LWP::USerAgent> and B<XML::LibXML> for this.
+It uses B<LWP::UserAgent> and B<XML::LibXML> for this.
 
 =head1 METHODS
 
diff --git a/lib/Travel/Routing/DE/VRR/Route.pm b/lib/Travel/Routing/DE/VRR/Route.pm
index 04228a2ae306442240cef2c3b6a95e6024274c68..2f23e9eb578997f0674c5dfbaac5a704c8ad4a03 100644
--- a/lib/Travel/Routing/DE/VRR/Route.pm
+++ b/lib/Travel/Routing/DE/VRR/Route.pm
@@ -8,7 +8,7 @@ use parent 'Class::Accessor';
 
 use Travel::Routing::DE::VRR::Route::Part;
 
-our $VERSION = '1.06';
+our $VERSION = '2.00';
 
 Travel::Routing::DE::VRR::Route->mk_ro_accessors(
 	qw(duration ticket_text ticket_type fare_adult fare_child vehicle_time));
@@ -52,7 +52,7 @@ Travel::Routing::DE::VRR::Route - Single route (connection) between two points
 
 =head1 VERSION
 
-version 1.06
+version 2.00
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Routing/DE/VRR/Route/Part.pm b/lib/Travel/Routing/DE/VRR/Route/Part.pm
index 7fdb6da9c5e96990fa62c33dcab11d3594908f14..4bfd96d642eb61c56066c3d020e38b1882bfa970 100644
--- a/lib/Travel/Routing/DE/VRR/Route/Part.pm
+++ b/lib/Travel/Routing/DE/VRR/Route/Part.pm
@@ -6,7 +6,7 @@ use 5.010;
 
 use parent 'Class::Accessor';
 
-our $VERSION = '1.06';
+our $VERSION = '2.00';
 
 Travel::Routing::DE::VRR::Route::Part->mk_ro_accessors(
 	qw(arrival_platform arrival_stop
@@ -86,7 +86,7 @@ points, without interchanges
 
 =head1 VERSION
 
-version 1.06
+version 2.00
 
 =head1 DESCRIPTION