[Apache-dispatch-devel] SF.net SVN: apache-dispatch:[86] trunk
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2010-02-13 02:43:34
|
Revision: 86
http://apache-dispatch.svn.sourceforge.net/apache-dispatch/?rev=86&view=rev
Author: phred_moyer
Date: 2010-02-13 02:43:27 +0000 (Sat, 13 Feb 2010)
Log Message:
-----------
Notes from Andreas Koenig on why I'm getting version errors for indexing.
our $VERSION = $Apache::Dispatch::Util::VERSION;
Such a line isn't understood by MakeMaker parse_version: it will only
return undef. But you can declare what you wish to be indexed in the
META.yml if you do not want to change the line.
Modified Paths:
--------------
trunk/Changes
trunk/lib/Apache/Dispatch/Util.pm
trunk/lib/Apache/Dispatch.pm
trunk/lib/Apache2/Dispatch.pm
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2010-02-09 07:11:48 UTC (rev 85)
+++ trunk/Changes 2010-02-13 02:43:27 UTC (rev 86)
@@ -1,5 +1,8 @@
Revision history for Perl extension Apache::Dispatch
+0.15 02.12.2010 18:38 PST
+ - set explicit versions in files so MakeMaker can parse them
+
0.14 02.08.2010 23:09 PST
- set the exit code to 255 if Apache::Bootstrap dependencies missing
Modified: trunk/lib/Apache/Dispatch/Util.pm
===================================================================
--- trunk/lib/Apache/Dispatch/Util.pm 2010-02-09 07:11:48 UTC (rev 85)
+++ trunk/lib/Apache/Dispatch/Util.pm 2010-02-13 02:43:27 UTC (rev 86)
@@ -3,7 +3,7 @@
use strict;
use warnings;
-our $VERSION = '0.14';
+our $VERSION = '0.15';
=head1 NAME
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2010-02-09 07:11:48 UTC (rev 85)
+++ trunk/lib/Apache/Dispatch.pm 2010-02-13 02:43:27 UTC (rev 86)
@@ -14,7 +14,7 @@
use Apache::Log ();
use Apache::Dispatch::Util ();
-our $VERSION = $Apache::Dispatch::Util::VERSION;
+our $VERSION = 0.15;
BEGIN {
push @Apache::Dispatch::ISA, qw(Apache::Dispatch::Util);
Modified: trunk/lib/Apache2/Dispatch.pm
===================================================================
--- trunk/lib/Apache2/Dispatch.pm 2010-02-09 07:11:48 UTC (rev 85)
+++ trunk/lib/Apache2/Dispatch.pm 2010-02-13 02:43:27 UTC (rev 86)
@@ -18,7 +18,7 @@
use Apache::Dispatch::Util;
push @Apache2::Dispatch::ISA, qw(Apache::Dispatch::Util);
-our $VERSION = $Apache::Dispatch::Util::VERSION;
+our $VERSION = 0.15;
# Initialize the directives
my $directives = __PACKAGE__->directives();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|