summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2004-03-18 14:12:27 +0000
committerZeev Suraski <zeev@php.net>2004-03-18 14:12:27 +0000
commitaac5c1f6c5c5233390342d027dc1407d8a3e62c3 (patch)
tree79fef975614d628b0dda1cdbd44556e75d1e5763
parentb8275175ff6aec4d6bf599339a918e8b9d31c1a3 (diff)
downloadphp-git-aac5c1f6c5c5233390342d027dc1407d8a3e62c3.tar.gz
Prepare to roll RC1
-rw-r--r--NEWS8
-rw-r--r--Zend/zend.h2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
4 files changed, 11 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 8dee972d3b..5a411fc8d7 100644
--- 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)
diff --git a/Zend/zend.h b/Zend/zend.h
index 621f034aae..498e671ec2 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -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
diff --git a/configure.in b/configure.in
index b2729ea2e5..0335617513 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="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
diff --git a/main/php_version.h b/main/php_version.h
index 2b07113854..e8fe88fb12 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 "RC1-dev"
-#define PHP_VERSION "5.0.0RC1-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.0.0RC1"