From: Roy T. Fielding Date: Sat, 19 Jul 1997 19:13:57 +0000 (+0000) Subject: Replaced APACHE_RELEASE_DATE with APACHE_RELEASE number, since branching X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16b77dd4c68bd5c94b39782794d82bbc2425d379;p=thirdparty%2Fapache%2Fhttpd.git Replaced APACHE_RELEASE_DATE with APACHE_RELEASE number, since branching a release makes the date meaningless for feature comparisons. The format is jnnffbb (j = major number, nn = minor, ff = bugfix, bb = beta) Note that 1.2b11 would have been 1020011 and 1.2.0 would be 1020012, since the beta sequence numbers are actually X.X.0 releases. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3@78674 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/APACHE_1_2_X/src/CHANGES b/APACHE_1_2_X/src/CHANGES index 12313e5e95a..999452f5d78 100644 --- a/APACHE_1_2_X/src/CHANGES +++ b/APACHE_1_2_X/src/CHANGES @@ -1,3 +1,11 @@ +Changes with Apache 1.2.2 + + *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache + release version number, such that it always increases along the + same lines as our source code branching. [Roy Fielding] + + *) Minor oversight on multiple variants fixed. [Paul Sutton] PR#94 + Changes with Apache 1.2.1 *) SECURITY: Don't serve file system objects unless they are plain files, diff --git a/APACHE_1_2_X/src/include/httpd.h b/APACHE_1_2_X/src/include/httpd.h index 7a28740a7f9..cde1a29a7fb 100644 --- a/APACHE_1_2_X/src/include/httpd.h +++ b/APACHE_1_2_X/src/include/httpd.h @@ -263,7 +263,10 @@ #define SERVER_VERSION SERVER_BASEVERSION #endif -#define APACHE_RELEASE_DATE 19970705 +/* Numeric release version identifier: major minor bugfix betaseq + * Always increases along the same track as the source branch. + */ +#define APACHE_RELEASE 1020201 #define SERVER_PROTOCOL "HTTP/1.1" #define SERVER_SUPPORT "http://www.apache.org/"