Author: phred
Date: Tue Apr  3 03:59:49 2012
New Revision: 1308670

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

Modified:
    perl/Apache-SizeLimit/trunk/RELEASE
    perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
    perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm
    perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm

Modified: perl/Apache-SizeLimit/trunk/RELEASE
URL: 
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/RELEASE?rev=1308670&r1=1308669&r2=1308670&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/RELEASE (original)
+++ perl/Apache-SizeLimit/trunk/RELEASE Tue Apr  3 03:59:49 2012
@@ -26,7 +26,7 @@ Instructions for Apache-SizeLimit Releas
     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.5 Make somebody else co-maintainer
+    d. click 3.6 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,
@@ -47,7 +47,7 @@ TODO:
 
   a. edit ./Changes:
      - find lib -type f \( -name "*.pm" -o -name "Changes" \) | \
-         xargs perl -pi -e 's,0.95-dev,0.96-rc1,g'
+         xargs perl -pi -e 's,0.96-dev,0.97-rc1,g'
 
      - don't commit these (see dev@ archives)
 
@@ -66,16 +66,16 @@ TODO:
      o dev/perl.apache.org
      o modperl/perl.apache.org
 
-  Subject: [RELEASE CANDIDATE] Apache-SizeLimit 0.96 RC\d+
+  Subject: [RELEASE CANDIDATE] Apache-SizeLimit 0.97 RC\d+
 
    (or maybe longer to give most people a chance to catch up). no need
    to tag this package
 
   a. if problems are detected during stage 2, repeat stages 1 and 2.
 
-  $ md5 Apache-SizeLimit-0.96-rc1.tar.gz > Apache-SizeLimit-0.96-rc1.tar.gz.md5
-  $ sha256 Apache-SizeLimit-0.96-rc1.tar.gz > 
Apache-SizeLimit-0.96-rc1.tar.gz.sha256
-  $ gpg --detach-sign --armor Apache-SizeLimit-0.96-rc1.tar.gz
+  $ md5 Apache-SizeLimit-0.97-rc1.tar.gz > Apache-SizeLimit-0.97-rc1.tar.gz.md5
+  $ sha256 Apache-SizeLimit-0.97-rc1.tar.gz > 
Apache-SizeLimit-0.97-rc1.tar.gz.sha256
+  $ gpg --detach-sign --armor Apache-SizeLimit-0.97-rc1.tar.gz
 
 3. when the package has been reported to be good, prepare a new
    package to be released
@@ -105,7 +105,7 @@ TODO:
 5. Announce the package
 
   a. post ... to the modperl, announce lists
-  Subject: [ANNOUNCE] Apache-SizeLimit 0.96
+  Subject: [ANNOUNCE] Apache-SizeLimit 0.97
      include 
   - MD5 sig (as it comes from CPAN upload announce).
   - the latest Changes
@@ -117,7 +117,7 @@ TODO:
   b. edit ./Changes:
      - start a new item with incremented version + '-dev'
 
-  =item 0.97-dev
+  =item 0.98-dev
 
   c. bump up version numbers in this file to make it easier to do the
      next release.
@@ -125,4 +125,4 @@ TODO:
      $ perl -pi -e 's/(\d+)\.(\d+)/join(".", $1, $2+1)/eg' RELEASE
 
   d. commit Changes
-     % svn ci -m "start 0.97-dev cycle" Changes RELEASE 
lib/Apache/SizeLimit.pm lib/Apache2/SizeLimit.pm lib/Apache/SizeLimit/Core.pm
+     % svn ci -m "start 0.98-dev cycle" Changes RELEASE 
lib/Apache/SizeLimit.pm lib/Apache2/SizeLimit.pm lib/Apache/SizeLimit/Core.pm

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
URL: 
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm?rev=1308670&r1=1308669&r2=1308670&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm Tue Apr  3 03:59:49 2012
@@ -26,7 +26,7 @@ use constant IS_WIN32 => $Config{'osname
 
 use vars qw($VERSION);
 
-$VERSION = '0.97';
+$VERSION = '0.98-dev';
 
 use Apache::SizeLimit::Core qw(
                              $MAX_PROCESS_SIZE

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm
URL: 
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm?rev=1308670&r1=1308669&r2=1308670&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit/Core.pm Tue Apr  3 
03:59:49 2012
@@ -49,7 +49,7 @@ use vars qw(
                 $START_TIME
                );
 
-$VERSION = '0.97';
+$VERSION = '0.98-dev';
 
 $REQUEST_COUNT          = 1;
 

Modified: perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm
URL: 
http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm?rev=1308670&r1=1308669&r2=1308670&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache2/SizeLimit.pm Tue Apr  3 03:59:49 
2012
@@ -34,7 +34,7 @@ die "Apache2::SizeLimit at the moment wo
 use constant IS_WIN32 => $Config{'osname'} eq 'MSWin32' ? 1 : 0;
 
 # 2.x requires 5.6.x+ so 'our' is okay
-our $VERSION = '0.97';
+our $VERSION = '0.98-dev';
 
 use Apache::SizeLimit::Core qw(
                              $MAX_PROCESS_SIZE


Reply via email to