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/05/05 14:41:12 UTC

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

Author: joes
Date: Thu May  5 05:41:11 2005
New Revision: 168324

URL: http://svn.apache.org/viewcvs?rev=168324&view=rev
Log:
Bump package version to our next target: 2.06!

Modified:
    httpd/apreq/trunk/CHANGES
    httpd/apreq/trunk/STATUS
    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/CHANGES
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/CHANGES?rev=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/CHANGES (original)
+++ httpd/apreq/trunk/CHANGES Thu May  5 05:41:11 2005
@@ -2,6 +2,10 @@
 @brief List of major changes.
 
 
+@section v2_06 Changes with libapreq2-2.06
+
+
+
 @section v2_05_dev Changes with libapreq2-2.05-dev (released May 5, 2005)
 
 

Modified: httpd/apreq/trunk/STATUS
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/STATUS?rev=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/STATUS (original)
+++ httpd/apreq/trunk/STATUS Thu May  5 05:41:11 2005
@@ -1,6 +1,6 @@
 /** @page apreq_status STATUS
 
-     2.05-dev released on May 5, 2005.
+     2.06 under development.
 
 Contributors looking for a mission:
 
@@ -8,16 +8,6 @@
 
 
 CURRENT RELEASE NOTES:
-
-    - This is a developer release, indicated by the "-dev" suffix on the
-      version string. We believe the core interfaces to be stable, but some
-      portions of the API may still need significant modification. Thus,
-      binary/source compatibility may be broken from one developer release to
-      the next. In particular the version numbering rules specified at 
-
-          http://apr.apache.org/versioning.html
-
-      do not apply to developer releases.
 
 
 RELEASE SHOWSTOPPERS:

Modified: httpd/apreq/trunk/configure.ac
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/configure.ac?rev=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/configure.ac (original)
+++ httpd/apreq/trunk/configure.ac Thu May  5 05:41:11 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.05-dev, apreq-dev@httpd.apache.org, libapreq2)
+AC_INIT(Apache HTTP Server Request Library, 2.06, 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.05-dev)
+AM_INIT_AUTOMAKE(libapreq2, 2.06)
 
 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=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Cookie.pm Thu May  5 05:41:11 2005
@@ -8,7 +8,7 @@
 use overload '""' => sub { shift->as_string() }, fallback => 1;
 
 push our @ISA, "APR::Request::Cookie";
-our $VERSION = "2.05-dev";
+our $VERSION = "2.06";
 
 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=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Request.pm Thu May  5 05:41:11 2005
@@ -3,7 +3,7 @@
 use APR::Request::Apache2;
 use Apache2::RequestRec;
 push our @ISA, qw/Apache2::RequestRec APR::Request::Apache2/;
-our $VERSION = "2.05-dev";
+our $VERSION = "2.06";
 
 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=168324&r1=168323&r2=168324&view=diff
==============================================================================
--- httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm (original)
+++ httpd/apreq/trunk/glue/perl/lib/Apache2/Upload.pm Thu May  5 05:41:11 2005
@@ -1,7 +1,7 @@
 package Apache2::Upload;
 use Apache2::Request;
 push our @ISA, qw/APR::Request::Param/;
-our $VERSION = "2.05-dev";
+our $VERSION = "2.06";
 no strict 'refs';
 for (qw/slurp type size link tempname fh io filename/) {
     *{$_} = *{"APR::Request::Param::upload_$_"}{CODE};