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 2009/04/25 23:12:16 UTC

svn commit: r768601 - in /perl/Apache-Bootstrap/trunk: Changes RELEASE lib/Apache/Bootstrap.pm

Author: phred
Date: Sat Apr 25 21:12:16 2009
New Revision: 768601

URL: http://svn.apache.org/viewvc?rev=768601&view=rev
Log:
0.06 release.  Need to standardize the RELEASE docs as much as possible
across Apache::* modules.

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

Modified: perl/Apache-Bootstrap/trunk/Changes
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/Changes?rev=768601&r1=768600&r2=768601&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/Changes (original)
+++ perl/Apache-Bootstrap/trunk/Changes Sat Apr 25 21:12:16 2009
@@ -1,6 +1,6 @@
 Revision history for Apache-Bootstrap
 
-0.06-dev
+0.06 Sat Apr 25 14:07:04 PST 2009
     - replace confusing instances of mod_perl1 and mp1 with simply mod_perl
 
 0.05 Mon Mar 30 10:25:54 PST 2009

Modified: perl/Apache-Bootstrap/trunk/RELEASE
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/RELEASE?rev=768601&r1=768600&r2=768601&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/RELEASE (original)
+++ perl/Apache-Bootstrap/trunk/RELEASE Sat Apr 25 21:12:16 2009
@@ -41,8 +41,8 @@
 
   a. edit ./Changes:
      - find lib -type f -name "*.pm" | \
-         xargs perl -pi -e 's,0.05-dev,0.05-rc1,g'
-     - perl -pi -e 's,0.05-dev,0.05-rc1,g' Changes
+         xargs perl -pi -e 's,0.07-dev,0.07-rc1,g'
+     - perl -pi -e 's,0.07-dev,0.07-rc1,g' Changes
 
      - don't commit these (see dev@ archives)
 
@@ -61,7 +61,7 @@
      o dev/perl.apache.org
      o modperl/perl.apache.org
 
-  Subject: [RELEASE CANDIDATE] Apache-Bootstrap 0.05 RC\d+
+  Subject: [RELEASE CANDIDATE] Apache-Bootstrap 0.07 RC\d+
 
    (or maybe longer to give most people a chance to catch up). no need
    to tag this package
@@ -96,7 +96,7 @@
 5. Announce the package
 
   a. post ... to the modperl, announce lists
-  Subject: [ANNOUNCE] Apache-Bootstrap 0.05
+  Subject: [ANNOUNCE] Apache-Bootstrap 0.07
      include 
   - MD5 sig (as it comes from CPAN upload announce).
   - the latest Changes
@@ -108,7 +108,7 @@
   b. edit ./Changes:
      - start a new item with incremented version + '-dev'
 
-  =item 0.06-dev
+  =item 0.07-dev
 
   c. bump up version numbers in this file to make it easier to do the
      next release.
@@ -116,5 +116,5 @@
      $ perl -pi -e 's/(\d+)\.(\d+)/join(".", $1, $2+1)/eg' RELEASE
 
   d. commit Changes
-     % svn ci -m "start 0.05-dev cycle" Changes RELEASE \
+     % svn ci -m "start 0.07-dev cycle" Changes RELEASE \
        lib/Apache/Bootstrap.pm lib/Apache2/Bootstrap.pm

Modified: perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm?rev=768601&r1=768600&r2=768601&view=diff
==============================================================================
--- perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm (original)
+++ perl/Apache-Bootstrap/trunk/lib/Apache/Bootstrap.pm Sat Apr 25 21:12:16 2009
@@ -9,7 +9,7 @@
 
 =cut
 
-our $VERSION = '0.06-dev';
+our $VERSION = '0.06';
 
 use constant MIN_MP2_VER => '1.99022';    # mp2 renaming
 
@@ -17,7 +17,7 @@
 
 In your Makefile.PL
 
- use Apache::Bootstrap 0.05;
+ use Apache::Bootstrap 0.06;
 
  my $bootstrap;