diff options
author | Andi Gutmans <andi@php.net> | 2004-04-25 08:32:50 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2004-04-25 08:32:50 +0000 |
commit | 94c44ea9eb582c2cded49698f341ce7818df625c (patch) | |
tree | 0908aaa4c6b0d7de7e6fd1fbe5998fe74a443c67 | |
parent | df14ec2fe2c6406a602125c0021bd980b3bf178a (diff) | |
download | php-git-94c44ea9eb582c2cded49698f341ce7818df625c.tar.gz |
- RC2
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | Zend/zend.h | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
4 files changed, 5 insertions, 5 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ????? 2004, PHP 5 Release Candidate 2 +25 Apr 2004, PHP 5 Release Candidate 2 - Reimplemented zend.ze1_compatibility_mode to have better PHP 4 compliance. (Dmitry, Andi) - Under CLI, fclose() on php://stdin, php://stdout and php://stderr will now diff --git a/Zend/zend.h b/Zend/zend.h index 3dd8b4bf76..4aeb4b7383 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -22,7 +22,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "2.0.0RC2-dev" +#define ZEND_VERSION "2.0.0RC2" #define ZEND_ENGINE_2 diff --git a/configure.in b/configure.in index 5190f9d64f..4aca458195 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=0 RELEASE_VERSION=0 -EXTRA_VERSION="RC2-dev" +EXTRA_VERSION="RC2" 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 b95a5e7439..1fc805706f 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 0 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "RC2-dev" -#define PHP_VERSION "5.0.0RC2-dev" +#define PHP_EXTRA_VERSION "RC2" +#define PHP_VERSION "5.0.0RC2" |