[Apache-dispatch-devel] SF.net SVN: apache-dispatch: [63] trunk
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2008-01-08 19:14:42
|
Revision: 63
http://apache-dispatch.svn.sourceforge.net/apache-dispatch/?rev=63&view=rev
Author: phred_moyer
Date: 2008-01-08 11:14:39 -0800 (Tue, 08 Jan 2008)
Log Message:
-----------
0.10 release
Modified Paths:
--------------
trunk/Changes
trunk/MANIFEST
trunk/RELEASE
trunk/lib/Apache/Dispatch.pm
trunk/lib/Apache2/Dispatch.pm
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2007-12-26 03:20:18 UTC (rev 62)
+++ trunk/Changes 2008-01-08 19:14:39 UTC (rev 63)
@@ -1,11 +1,11 @@
Revision history for Perl extension Apache::Dispatch
-0.10-dev
+0.10 01.08.2008
- steal the RELEASE doc from Apache::Reload and adapt it - fred
- steal the Makefile.PL from A::R, and merge it with our needed custom
config directive generation, it detects the version more reliably - fred
-0.10_03
+0.10_03 12.14.2007
- use the :withtestmore feature correctly - fred, thanks to geoff for the spot
- use like() instead of ok( $foo =~ m/bar/ ) - fred
Modified: trunk/MANIFEST
===================================================================
--- trunk/MANIFEST 2007-12-26 03:20:18 UTC (rev 62)
+++ trunk/MANIFEST 2008-01-08 19:14:39 UTC (rev 63)
@@ -3,6 +3,7 @@
Makefile.PL
INSTALL
README
+RELEASE
ToDo
test.pl
set_pureperl.PL
Modified: trunk/RELEASE
===================================================================
--- trunk/RELEASE 2007-12-26 03:20:18 UTC (rev 62)
+++ trunk/RELEASE 2008-01-08 19:14:39 UTC (rev 63)
@@ -6,8 +6,8 @@
a. edit ./Changes:
- find lib -type f -name "*.pm" | \
- xargs perl -pi -e 's,0.10-dev,0.10-RC1,g'
- - perl -pi -e 's,0.10-dev,0.10-RC1,g' Changes
+ xargs perl -pi -e 's,0.11-dev,0.11-RC1,g'
+ - perl -pi -e 's,0.11-dev,0.11-RC1,g' Changes
- don't commit these (see dev@ archives)
@@ -26,7 +26,7 @@
o dev/perl.apache.org
o modperl/perl.apache.org
- Subject: [RELEASE CANDIDATE] Apache-Dispatch 0.10 RC\d+
+ Subject: [RELEASE CANDIDATE] Apache-Dispatch 0.11 RC\d+
(or maybe longer to give most people a chance to catch up). no need
to tag this package
@@ -61,7 +61,7 @@
5. Announce the package
a. post ... to the modperl, announce lists
- Subject: [ANNOUNCE] Apache-Dispatch 0.10
+ Subject: [ANNOUNCE] Apache-Dispatch 0.11
include
- MD5 sig (as it comes from CPAN upload announce).
- the latest Changes
@@ -73,7 +73,7 @@
b. edit ./Changes:
- start a new item with incremented version + '-dev'
- =item 0.11-dev
+ =item 0.12-dev
c. bump up version numbers in this file to make it easier to do the
next release.
@@ -81,4 +81,4 @@
$ perl -pi -e 's/(\d+)\.(\d+)/join(".", $1, $2+1)/eg' RELEASE
d. commit Changes
- % svn ci -m "start 0.11-dev cycle" Changes RELEASE lib/Apache/Dispatch.pm
+ % svn ci -m "start 0.12-dev cycle" Changes RELEASE lib/Apache/Dispatch.pm
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2007-12-26 03:20:18 UTC (rev 62)
+++ trunk/lib/Apache/Dispatch.pm 2008-01-08 19:14:39 UTC (rev 63)
@@ -11,7 +11,7 @@
use strict;
use warnings;
-our $VERSION = '0.10_02';
+our $VERSION = '0.10';
use mod_perl 1.2401;
use Apache::Constants qw(OK DECLINED SERVER_ERROR);
Modified: trunk/lib/Apache2/Dispatch.pm
===================================================================
--- trunk/lib/Apache2/Dispatch.pm 2007-12-26 03:20:18 UTC (rev 62)
+++ trunk/lib/Apache2/Dispatch.pm 2008-01-08 19:14:39 UTC (rev 63)
@@ -9,7 +9,7 @@
use strict;
use warnings;
-$Apache2::Dispatch::VERSION = '0.10_02';
+$Apache2::Dispatch::VERSION = '0.10';
use mod_perl2 1.99023;
use Apache2::Const -compile => qw(OK DECLINED SERVER_ERROR);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|