From: Ilia Alshanetsky Date: Mon, 18 Aug 2003 12:27:01 +0000 (+0000) Subject: RC4 is a go X-Git-Tag: php-4.3.3RC4~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bacb29c98aea7080326e34435cdbd1b3adb66d2;p=php RC4 is a go --- diff --git a/NEWS b/NEWS index 27f3544cfd..f96ac02d9e 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -14 Aug 2003, Version 4.3.3RC4 +18 Aug 2003, Version 4.3.3RC4 - Fixed bug #25093 (ext/pgsql: Various leaks due to non-freed queries). (Ilia) - Fixed bug #25084 (ext/session: Fixed session.referer_check to be independent on register_globals). (Ilia) diff --git a/configure.in b/configure.in index 4ee6238d4f..5c093280ed 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=3 RELEASE_VERSION=3 -EXTRA_VERSION="RC4-dev" +EXTRA_VERSION="RC4" VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" dnl Define where extension directories are located in the configure context diff --git a/main/php_version.h b/main/php_version.h index 2a192f3a4d..3aad10b3d6 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 4 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC4-dev" -#define PHP_VERSION "4.3.3RC4-dev" +#define PHP_EXTRA_VERSION "RC4" +#define PHP_VERSION "4.3.3RC4"