zeev Thu Mar 18 09:12:28 2004 EDT
Modified files:
/php-src NEWS configure.in
/ZendEngine2 zend.h
/php-src/main php_version.h
Log:
Prepare to roll RC1
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1644&r2=1.1645&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1644 php-src/NEWS:1.1645
--- php-src/NEWS:1.1644 Thu Mar 18 05:39:39 2004
+++ php-src/NEWS Thu Mar 18 09:12:25 2004
@@ -1,6 +1,12 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? March 2004, PHP 5 Release Candidate 1
+18 March 2004, PHP 5 Release Candidate 1
+- Fixed numerous bugs with the just-in-time auto-global initialization, that
+ could cause $_SERVER, $argv/$argc and other variables not to work properly.
+ (Zeev)
+- Fixed data corruption with constant assignments to object properties. (Zeev)
+- Changed __toString() to be called automatically only with print and echo
+ statements. (Andi)
- Replaced the exec_finished hook by the zend_post_deactive hook for
extensions. The new hook will be run after the symbol table and destructors
are run. (Derick)
http://cvs.php.net/diff.php/php-src/configure.in?r1=1.496&r2=1.497&ty=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.496 php-src/configure.in:1.497
--- php-src/configure.in:1.496 Fri Mar 12 16:45:55 2004
+++ php-src/configure.in Thu Mar 18 09:12:25 2004
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.496 2004/03/12 21:45:55 pollita Exp $ -*- sh -*-
+dnl ## $Id: configure.in,v 1.497 2004/03/18 14:12:25 zeev Exp $ -*- sh -*-
dnl ## Process this file with autoconf to produce a configure script.
divert(1)
@@ -41,7 +41,7 @@
MAJOR_VERSION=5
MINOR_VERSION=0
RELEASE_VERSION=0
-EXTRA_VERSION="RC1-dev"
+EXTRA_VERSION="RC1"
VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
dnl Define where extension directories are located in the configure context
http://cvs.php.net/diff.php/ZendEngine2/zend.h?r1=1.240&r2=1.241&ty=u
Index: ZendEngine2/zend.h
diff -u ZendEngine2/zend.h:1.240 ZendEngine2/zend.h:1.241
--- ZendEngine2/zend.h:1.240 Tue Mar 16 17:27:26 2004
+++ ZendEngine2/zend.h Thu Mar 18 09:12:26 2004
@@ -17,12 +17,12 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend.h,v 1.240 2004/03/16 22:27:26 derick Exp $ */
+/* $Id: zend.h,v 1.241 2004/03/18 14:12:26 zeev Exp $ */
#ifndef ZEND_H
#define ZEND_H
-#define ZEND_VERSION "2.0.0-dev"
+#define ZEND_VERSION "2.0.0RC1"
#define ZEND_ENGINE_2
http://cvs.php.net/diff.php/php-src/main/php_version.h?r1=1.82&r2=1.83&ty=u
Index: php-src/main/php_version.h
diff -u php-src/main/php_version.h:1.82 php-src/main/php_version.h:1.83
--- php-src/main/php_version.h:1.82 Thu Feb 12 11:26:59 2004
+++ php-src/main/php_version.h Thu Mar 18 09:12:27 2004
@@ -3,5 +3,5 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 0
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "RC1-dev"
-#define PHP_VERSION "5.0.0RC1-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.0.0RC1"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php