summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2009-02-05 20:53:45 +0000
committerIlia Alshanetsky <iliaa@php.net>2009-02-05 20:53:45 +0000
commitc77343ea9e40ed8d4252174cdd3ee25be2a6797c (patch)
treec15e80b6df0cf08ce447a1dd191f8f541dc7a71b
parent34f117411e311a9f0e58e56758b85ae5c70b9d70 (diff)
downloadphp-git-c77343ea9e40ed8d4252174cdd3ee25be2a6797c.tar.gz
5.2.9RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index aa32034846..4b5d969dd3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2009, PHP 5.2.9
+02 Feb 2009, PHP 5.2.9RC1
- Changed __call() to be invoked on private/protected method access, similar to
properties and __get(). (Andrei)
diff --git a/configure.in b/configure.in
index 419b3f9736..3204f59ccd 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=2
PHP_RELEASE_VERSION=9
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index 91fb29af94..dffa5a4c2a 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 2
#define PHP_RELEASE_VERSION 9
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.2.9-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.2.9RC1"
#define PHP_VERSION_ID 50209