In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/6c34c321161ac1e3ead8ea1267c3d275f6f9886b?hp=f4388f027bbea55565680a04b884435b6f9d24d1>
- Log ----------------------------------------------------------------- commit 6c34c321161ac1e3ead8ea1267c3d275f6f9886b Author: Steffen Mueller <[email protected]> Date: Sun May 10 11:01:13 2009 +0200 Pull PathTools 3.30 (which was just a blead sync.) ----------------------------------------------------------------------- Summary of changes: ext/Cwd/Changes | 6 ++++++ lib/Cwd.pm | 2 +- lib/File/Spec.pm | 2 +- lib/File/Spec/Cygwin.pm | 2 +- lib/File/Spec/Epoc.pm | 2 +- lib/File/Spec/Functions.pm | 2 +- lib/File/Spec/Mac.pm | 2 +- lib/File/Spec/OS2.pm | 2 +- lib/File/Spec/Unix.pm | 2 +- lib/File/Spec/VMS.pm | 2 +- lib/File/Spec/Win32.pm | 2 +- 11 files changed, 16 insertions(+), 10 deletions(-) diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes index a10a90b..29d0113 100644 --- a/ext/Cwd/Changes +++ b/ext/Cwd/Changes @@ -1,5 +1,11 @@ Revision history for Perl distribution PathTools. +3.30 - Sun May 10 10:55:00 2009 + +- Promote to stable release. + +3.29_01 - Thu May 7 20:22:00 2009 + - Minor fixes for QNX6. [Sean Boudreau] - Update to support VMS in Unix compatible mode and/or file names using diff --git a/lib/Cwd.pm b/lib/Cwd.pm index 8121231..4618f94 100644 --- a/lib/Cwd.pm +++ b/lib/Cwd.pm @@ -171,7 +171,7 @@ use strict; use Exporter; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); -$VERSION = '3.29_01'; +$VERSION = '3.30'; my $xs_version = $VERSION; $VERSION = eval $VERSION; diff --git a/lib/File/Spec.pm b/lib/File/Spec.pm index 51c27c2..839e2aa 100644 --- a/lib/File/Spec.pm +++ b/lib/File/Spec.pm @@ -3,7 +3,7 @@ package File::Spec; use strict; use vars qw(@ISA $VERSION); -$VERSION = '3.29_01'; +$VERSION = '3.30'; $VERSION = eval $VERSION; my %module = (MacOS => 'Mac', diff --git a/lib/File/Spec/Cygwin.pm b/lib/File/Spec/Cygwin.pm index b3241c2..050a1bb 100644 --- a/lib/File/Spec/Cygwin.pm +++ b/lib/File/Spec/Cygwin.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; @ISA = qw(File::Spec::Unix); diff --git a/lib/File/Spec/Epoc.pm b/lib/File/Spec/Epoc.pm index 5812f68..54ff667 100644 --- a/lib/File/Spec/Epoc.pm +++ b/lib/File/Spec/Epoc.pm @@ -3,7 +3,7 @@ package File::Spec::Epoc; use strict; use vars qw($VERSION @ISA); -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; require File::Spec::Unix; diff --git a/lib/File/Spec/Functions.pm b/lib/File/Spec/Functions.pm index 7965562..e7becc7 100644 --- a/lib/File/Spec/Functions.pm +++ b/lib/File/Spec/Functions.pm @@ -5,7 +5,7 @@ use strict; use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION); -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; require Exporter; diff --git a/lib/File/Spec/Mac.pm b/lib/File/Spec/Mac.pm index aceef4b..8b47470 100644 --- a/lib/File/Spec/Mac.pm +++ b/lib/File/Spec/Mac.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; @ISA = qw(File::Spec::Unix); diff --git a/lib/File/Spec/OS2.pm b/lib/File/Spec/OS2.pm index a68d64f..a8fa63e 100644 --- a/lib/File/Spec/OS2.pm +++ b/lib/File/Spec/OS2.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; @ISA = qw(File::Spec::Unix); diff --git a/lib/File/Spec/Unix.pm b/lib/File/Spec/Unix.pm index 99782fd..8fd2320 100644 --- a/lib/File/Spec/Unix.pm +++ b/lib/File/Spec/Unix.pm @@ -3,7 +3,7 @@ package File::Spec::Unix; use strict; use vars qw($VERSION); -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; =head1 NAME diff --git a/lib/File/Spec/VMS.pm b/lib/File/Spec/VMS.pm index 07a78dc..34b592a 100644 --- a/lib/File/Spec/VMS.pm +++ b/lib/File/Spec/VMS.pm @@ -4,7 +4,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.29_1'; +$VERSION = '3.30'; $VERSION = eval $VERSION; @ISA = qw(File::Spec::Unix); diff --git a/lib/File/Spec/Win32.pm b/lib/File/Spec/Win32.pm index 692dcbc..93301ac 100644 --- a/lib/File/Spec/Win32.pm +++ b/lib/File/Spec/Win32.pm @@ -5,7 +5,7 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.29'; +$VERSION = '3.30'; $VERSION = eval $VERSION; @ISA = qw(File::Spec::Unix); -- Perl5 Master Repository
