]> granicus.if.org Git - php/commitdiff
Prepare to roll RC1
authorZeev Suraski <zeev@php.net>
Thu, 18 Mar 2004 14:12:27 +0000 (14:12 +0000)
committerZeev Suraski <zeev@php.net>
Thu, 18 Mar 2004 14:12:27 +0000 (14:12 +0000)
NEWS
Zend/zend.h
configure.in
main/php_version.h

diff --git a/NEWS b/NEWS
index 8dee972d3b67298bcb0cb6f7e5dd7df8f5724bd8..5a411fc8d7f052e84128169e91eb0d1062c3da79 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)
index 621f034aaef4fac4e39a40d39457e3c74e277903..498e671ec276127fa194fb6ab654d1356524f8fb 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef ZEND_H
 #define ZEND_H
 
-#define ZEND_VERSION "2.0.0-dev"
+#define ZEND_VERSION "2.0.0RC1"
 
 #define ZEND_ENGINE_2
 
index b2729ea2e57c31e3e15bebf76f0594f699888354..0335617513ffd7b5e8c5cd2b288352bb1bdf99f8 100644 (file)
@@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h)
 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
index 2b071138542c79e7e1a2dabe091d08a77c03db2a..e8fe88fb12cd6c8927ba7dfa6fed2d2ee1704970 100644 (file)
@@ -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"