You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2005/07/08 18:37:11 UTC

svn commit: r209838 - in /httpd/apreq/trunk: configure.ac glue/perl/lib/Apache2/Cookie.pm glue/perl/lib/Apache2/Request.pm glue/perl/lib/Apache2/Upload.pm

Author: joes
Date: Fri Jul  8 09:37:09 2005
New Revision: 209838

URL: http://svn.apache.org/viewcvs?rev=209838&view=rev
Log:
Make 2.06 a developer release.

Modified:
    httpd/apreq/trunk/configure.ac
    httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm
    httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
    httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm

Modified: httpd/apreq/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/configure.ac?rev=209838&r1=209837&r2=209838&view=diff
==============================================================================
--- httpd/apreq/trunk/configure.ac (original)
+++ httpd/apreq/trunk/configure.ac Fri Jul  8 09:37:09 2005
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.53)
-AC_INIT(Apache HTTP Server Request Library, 2.06, apreq-dev@httpd.apache.org, libapreq2)
+AC_INIT(Apache HTTP Server Request Library, 2.06-dev, apreq-dev@httpd.apache.org, libapreq2)
 dnl Generate config.nice script- macro must be here at the top
 dnl to avoid corruption of $0 and $@.
 APR_CONFIG_NICE(config.nice)
@@ -13,7 +13,7 @@
 
 dnl debian woody's archaic auto* tools don't set PACKAGE/VERSION correctly via 
 dnl AC_INIT above, so we do it again here.
-AM_INIT_AUTOMAKE(libapreq2, 2.06)
+AM_INIT_AUTOMAKE(libapreq2, 2.06-dev)
 
 AC_PROG_MAKE_SET
 

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm?rev=209838&r1=209837&r2=209838&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Fri Jul  8 09:37:09 2005
@@ -9,7 +9,7 @@
 use overload '""' => sub { shift->as_string() }, fallback => 1;
 
 push our @ISA, "APR::Request::Cookie";
-our $VERSION = "2.06";
+our $VERSION = "2.06-dev";
 
 sub new {
     my ($class, $r, %attrs) = @_;

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm?rev=209838&r1=209837&r2=209838&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm Fri Jul  8 09:37:09 2005
@@ -3,7 +3,7 @@
 use APR::Request::Apache2;
 use Apache2::RequestRec;
 push our @ISA, qw/Apache2::RequestRec APR::Request::Apache2/;
-our $VERSION = "2.06";
+our $VERSION = "2.06-dev";
 
 my %old_limits = (
     post_max => "read_limit",

Modified: httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm?rev=209838&r1=209837&r2=209838&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm Fri Jul  8 09:37:09 2005
@@ -1,7 +1,7 @@
 package Apache2::Upload;
 use Apache2::Request;
 push our @ISA, qw/APR::Request::Param/;
-our $VERSION = "2.06";
+our $VERSION = "2.06-dev";
 no strict 'refs';
 for (qw/slurp type size link tempname fh io filename/) {
     *{$_} = *{"APR::Request::Param::upload_$_"}{CODE};