From fdc7fd454d3a65dcdf6c279e5f09ae37595ab029 Mon Sep 17 00:00:00 2001
From: Daniel Friesel <derf@finalrewind.org>
Date: Sun, 17 Jul 2011 14:10:56 +0200
Subject: [PATCH] Release v1.05

---
 Build.PL                                | 2 +-
 Changelog                               | 3 ++-
 README                                  | 2 +-
 bin/efa                                 | 4 ++--
 lib/Travel/Routing/DE/VRR.pm            | 4 ++--
 lib/Travel/Routing/DE/VRR/Route.pm      | 4 ++--
 lib/Travel/Routing/DE/VRR/Route/Part.pm | 4 ++--
 7 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/Build.PL b/Build.PL
index 833ee34..49eeeb0 100644
--- a/Build.PL
+++ b/Build.PL
@@ -15,7 +15,7 @@ Module::Build->new(
 	module_name => 'Travel::Routing::DE::VRR',
 	license => 'unrestricted',
 	requires => {
-		'perl' => '5.10.0',
+		'perl' => '5.10.1',
 		'Class::Accessor' => 0,
 		'Exception::Class' => 0,
 		'Getopt::Long' => 0,
diff --git a/Changelog b/Changelog
index 36c6264..1c9405f 100644
--- a/Changelog
+++ b/Changelog
@@ -1,7 +1,8 @@
-git HEAD
+Travel::Routing::DE::VRR 1.05 - Sun Jul 17 2011
 
     * Documentation fixes (in a few places, the module was prefixed
       Travel::Status instead of the correct Travel::Routing)
+    * Note that we need perl >= 5.10.1 because of the parent pragma
 
     [efa]
     * Fix connection error handler
diff --git a/README b/README
index 33af3e8..b2fd346 100644
--- a/README
+++ b/README
@@ -7,7 +7,7 @@ efa - unofficial efa.vrr.de command line client
 Dependencies
 ------------
 
- * perl version 5.10 or newer
+ * perl version 5.10.1 or newer
  * Class::Accessor
  * Exception::Class
  * XML::LibXML
diff --git a/bin/efa b/bin/efa
index 7263b2d..9c89a8d 100755
--- a/bin/efa
+++ b/bin/efa
@@ -10,7 +10,7 @@ use Travel::Routing::DE::VRR;
 use Exception::Class;
 use Getopt::Long qw/:config no_ignore_case/;
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 my $ignore_info = 'Fahrradmitnahme';
 my $efa;
 my ( @from, @to, @via, $from_type, $to_type, $via_type );
@@ -228,7 +228,7 @@ efa - unofficial efa.vrr.de command line client
 
 =head1 VERSION
 
-version 1.04
+version 1.05
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Routing/DE/VRR.pm b/lib/Travel/Routing/DE/VRR.pm
index ecfa001..c152907 100644
--- a/lib/Travel/Routing/DE/VRR.pm
+++ b/lib/Travel/Routing/DE/VRR.pm
@@ -35,7 +35,7 @@ use Exception::Class (
 	},
 );
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 sub set_time {
 	my ( $self, %conf ) = @_;
@@ -627,7 +627,7 @@ Travel::Routing::DE::VRR - inofficial interface to the efa.vrr.de German itinera
 
 =head1 VERSION
 
-version 1.04
+version 1.05
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Routing/DE/VRR/Route.pm b/lib/Travel/Routing/DE/VRR/Route.pm
index 537c3d6..838484b 100644
--- a/lib/Travel/Routing/DE/VRR/Route.pm
+++ b/lib/Travel/Routing/DE/VRR/Route.pm
@@ -6,7 +6,7 @@ use 5.010;
 
 use Travel::Routing::DE::VRR::Route::Part;
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 sub new {
 	my ( $obj, @parts ) = @_;
@@ -47,7 +47,7 @@ Travel::Routing::DE::VRR::Route - Single route (connection) between two points
 
 =head1 VERSION
 
-version 1.04
+version 1.05
 
 =head1 DESCRIPTION
 
diff --git a/lib/Travel/Routing/DE/VRR/Route/Part.pm b/lib/Travel/Routing/DE/VRR/Route/Part.pm
index 9340d2d..6c316aa 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.04';
+our $VERSION = '1.05';
 
 Travel::Routing::DE::VRR::Route::Part->mk_ro_accessors(
 	qw(arrival_stop arrival_time departure_stop departure_time train_line
@@ -54,7 +54,7 @@ points, without interchanges
 
 =head1 VERSION
 
-version 1.04
+version 1.05
 
 =head1 DESCRIPTION
 
-- 
GitLab