summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-10-20 01:51:07 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-10-20 01:51:07 +0000
commitf85d9885d3b30d901d90808ecf3ed7984ea2c36d (patch)
treef7f82601b35db91b14d0caf7a99261115d99bada
parent0cf7b1012f2c9c2a574d75af23b317e2e94a2b14 (diff)
downloadphp-git-f85d9885d3b30d901d90808ecf3ed7984ea2c36d.tar.gz
5.2.0RC6
-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 f4f86df734..4b54837ba7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-12 Oct 2006, PHP 5.2.0RC6
+19 Oct 2006, PHP 5.2.0RC6
- Fixed invalid read in imagecreatefrompng when an empty file is given
(Pierre, Tony)
- Fixed bug #39140 (Uncaught exception may cause crash). (Dmitry)
diff --git a/configure.in b/configure.in
index 609ac21f4f..a32a38280f 100644
--- a/configure.in
+++ b/configure.in
@@ -44,7 +44,7 @@ AC_CONFIG_HEADER(main/php_config.h)
MAJOR_VERSION=5
MINOR_VERSION=2
RELEASE_VERSION=0
-EXTRA_VERSION="RC6-dev"
+EXTRA_VERSION="RC6"
PHP_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]MAJOR_VERSION \* 10000 + [$]MINOR_VERSION \* 100 + [$]RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index d7e9cbca94..a53e66d754 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 0
-#define PHP_EXTRA_VERSION "RC6-dev"
-#define PHP_VERSION "5.2.0RC6-dev"
+#define PHP_EXTRA_VERSION "RC6"
+#define PHP_VERSION "5.2.0RC6"
#define PHP_VERSION_ID 50200