diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-10-20 16:58:56 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-10-20 16:58:56 +0000 |
commit | 6d369a51c83c3849321de2736f12a77c42f41bbd (patch) | |
tree | 77efd0cefe421345b58c1b05bfb9ce627dbda8a1 | |
parent | 9decf616c9cb521c11862c3aa18a32c7379802cb (diff) | |
download | php-git-6d369a51c83c3849321de2736f12a77c42f41bbd.tar.gz |
Back to dev.
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,8 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? Oct 2003, Version 4.3.4RC2 +?? Oct 2003, Version 4.3.4RC3 + +20 Oct 2003, Version 4.3.4RC2 - Fixed multibyte regex engine to properly handle ".*" pattern under POSIX compatible mode. (K.Kosako <kosako at sofnec.co.jp>, Moriyoshi) - Fixed bug #25923 (mail() modifies the to & subject arguments). (Ilia) diff --git a/configure.in b/configure.in index 57aa0a1047..307f66d170 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=4 -EXTRA_VERSION="RC2" +EXTRA_VERSION="RC3-dev" 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 c60d50ce24..cf9d5e4449 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 4 -#define PHP_EXTRA_VERSION "RC2" -#define PHP_VERSION "4.3.4RC2" +#define PHP_EXTRA_VERSION "RC3-dev" +#define PHP_VERSION "4.3.4RC3-dev" |