You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ph...@apache.org on 2010/08/21 21:57:38 UTC

svn commit: r987820 - in /perl/Apache-Reload/trunk: Changes RELEASE lib/Apache/Reload.pm lib/Apache2/Reload.pm

Author: phred
Date: Sat Aug 21 19:57:38 2010
New Revision: 987820

URL: http://svn.apache.org/viewvc?rev=987820&view=rev
Log:
start 0.12-dev cycle

Modified:
    perl/Apache-Reload/trunk/Changes
    perl/Apache-Reload/trunk/RELEASE
    perl/Apache-Reload/trunk/lib/Apache/Reload.pm
    perl/Apache-Reload/trunk/lib/Apache2/Reload.pm

Modified: perl/Apache-Reload/trunk/Changes
URL: http://svn.apache.org/viewvc/perl/Apache-Reload/trunk/Changes?rev=987820&r1=987819&r2=987820&view=diff
==============================================================================
--- perl/Apache-Reload/trunk/Changes (original)
+++ perl/Apache-Reload/trunk/Changes Sat Aug 21 19:57:38 2010
@@ -6,6 +6,9 @@ Changes - Apache::Reload change logfile
 
 =over 1
 
+=item 0.12+dev
+
+
 =item 0.11 August 21, 2010
 
 Ignore require-hooks which exist in %INC

Modified: perl/Apache-Reload/trunk/RELEASE
URL: http://svn.apache.org/viewvc/perl/Apache-Reload/trunk/RELEASE?rev=987820&r1=987819&r2=987820&view=diff
==============================================================================
--- perl/Apache-Reload/trunk/RELEASE (original)
+++ perl/Apache-Reload/trunk/RELEASE Sat Aug 21 19:57:38 2010
@@ -26,7 +26,7 @@ Instructions for Apache-Reload Release M
     a. login into https://pause.perl.org
     b. menu click: Select Mailinglist/Action
     c. choose APML and share_perms and click go
-    d. click 3.2 Make somebody else co-maintainer
+    d. click 3.3 Make somebody else co-maintainer
     e. choose the modules to give the perms to
        type the username of the new co-maintainer
     f. if you happen to know that packages were added this release,
@@ -41,8 +41,8 @@ Instructions for Apache-Reload Release M
 
   a. edit ./Changes:
      - find lib -type f -name "*.pm" | \
-         xargs perl -pi -e 's,0.11-dev,0.11-rc1,g'
-     - perl -pi -e 's,0.11-dev,0.11-rc1,g' Changes
+         xargs perl -pi -e 's,0.12-dev,0.12-rc1,g'
+     - perl -pi -e 's,0.12-dev,0.12-rc1,g' Changes
 
      - don't commit these (see dev@ archives)
 
@@ -61,7 +61,7 @@ Instructions for Apache-Reload Release M
      o dev/perl.apache.org
      o modperl/perl.apache.org
 
-  Subject: [RELEASE CANDIDATE] Apache-Reload 0.11 RC\d+
+  Subject: [RELEASE CANDIDATE] Apache-Reload 0.12 RC\d+
 
    (or maybe longer to give most people a chance to catch up). no need
    to tag this package
@@ -96,7 +96,7 @@ Instructions for Apache-Reload Release M
 5. Announce the package
 
   a. post ... to the modperl, announce lists
-  Subject: [ANNOUNCE] Apache-Reload 0.11
+  Subject: [ANNOUNCE] Apache-Reload 0.12
      include 
   - MD5 sig (as it comes from CPAN upload announce).
   - the latest Changes
@@ -108,7 +108,7 @@ Instructions for Apache-Reload Release M
   b. edit ./Changes:
      - start a new item with incremented version + '-dev'
 
-  =item 0.12-dev
+  =item 0.13-dev
 
   c. bump up version numbers in this file to make it easier to do the
      next release.
@@ -116,5 +116,5 @@ Instructions for Apache-Reload Release M
      $ 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 \
+     % svn ci -m "start 0.12-dev cycle" Changes RELEASE \
        lib/Apache/Reload.pm lib/Apache2/Reload.pm

Modified: perl/Apache-Reload/trunk/lib/Apache/Reload.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Reload/trunk/lib/Apache/Reload.pm?rev=987820&r1=987819&r2=987820&view=diff
==============================================================================
--- perl/Apache-Reload/trunk/lib/Apache/Reload.pm (original)
+++ perl/Apache-Reload/trunk/lib/Apache/Reload.pm Sat Aug 21 19:57:38 2010
@@ -17,7 +17,7 @@ package Apache::Reload;
 
 use strict;
 
-$Apache::Reload::VERSION = '0.11';
+$Apache::Reload::VERSION = '0.12';
 
 use vars qw(%INCS %Stat $TouchTime %UndefFields %Ignore);
 

Modified: perl/Apache-Reload/trunk/lib/Apache2/Reload.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Reload/trunk/lib/Apache2/Reload.pm?rev=987820&r1=987819&r2=987820&view=diff
==============================================================================
--- perl/Apache-Reload/trunk/lib/Apache2/Reload.pm (original)
+++ perl/Apache-Reload/trunk/lib/Apache2/Reload.pm Sat Aug 21 19:57:38 2010
@@ -20,7 +20,7 @@ use warnings FATAL => 'all';
 
 use mod_perl2;
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 use Apache2::Const -compile => qw(OK);