[Apache-dispatch-devel] SF.net SVN: apache-dispatch:[78] trunk
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2009-04-25 23:10:45
|
Revision: 78
http://apache-dispatch.svn.sourceforge.net/apache-dispatch/?rev=78&view=rev
Author: phred_moyer
Date: 2009-04-25 23:10:40 +0000 (Sat, 25 Apr 2009)
Log Message:
-----------
Release 0.12 which fixes 0.11 CPAN version indexer issue
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 2009-04-25 22:51:15 UTC (rev 77)
+++ trunk/Changes 2009-04-25 23:10:40 UTC (rev 78)
@@ -1,6 +1,8 @@
Revision history for Perl extension Apache::Dispatch
-0.12-dev
+0.12 04.25.2009 16:06 PST
+ - set library versions to $Apache::Dispatch::Util::VERSION so PAUSE
+ can index them correctly
0.11 04.25.2009 14:32 PST
- remove t/TEST.PL (it is not needed)
Modified: trunk/lib/Apache/Dispatch/Util.pm
===================================================================
--- trunk/lib/Apache/Dispatch/Util.pm 2009-04-25 22:51:15 UTC (rev 77)
+++ trunk/lib/Apache/Dispatch/Util.pm 2009-04-25 23:10:40 UTC (rev 78)
@@ -3,7 +3,7 @@
use strict;
use warnings;
-our $VERSION = 0.12-dev;
+our $VERSION = 0.12;
=head1 NAME
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2009-04-25 22:51:15 UTC (rev 77)
+++ trunk/lib/Apache/Dispatch.pm 2009-04-25 23:10:40 UTC (rev 78)
@@ -17,6 +17,7 @@
use Apache::Log ();
use Apache::Dispatch::Util ();
+our $VERSION = $Apache::Dispatch::Util::VERSION;
BEGIN {
push @Apache::Dispatch::ISA, qw(Apache::Dispatch::Util);
@@ -47,7 +48,7 @@
require Apache::ModuleConfig;
require DynaLoader;
push @Apache::Dispatch::ISA, qw(DynaLoader);
- __PACKAGE__->bootstrap($Apache::Dispatch::Util::VERSION);
+ __PACKAGE__->bootstrap($VERSION);
}
sub handler {
Modified: trunk/lib/Apache2/Dispatch.pm
===================================================================
--- trunk/lib/Apache2/Dispatch.pm 2009-04-25 22:51:15 UTC (rev 77)
+++ trunk/lib/Apache2/Dispatch.pm 2009-04-25 23:10:40 UTC (rev 78)
@@ -18,6 +18,8 @@
use Apache::Dispatch::Util;
push @Apache2::Dispatch::ISA, qw(Apache::Dispatch::Util);
+our $VERSION = $Apache::Dispatch::Util::VERSION;
+
# 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.
|