diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-07-24 18:51:31 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-07-24 18:51:31 +0000 |
commit | 5e24aedf46a50f5bba91383e8edd982d6c57b36f (patch) | |
tree | f0ce96fd35ed868cbcfbff8d75ad62c4d49e837b | |
parent | 6cf345f5718fe3ad055d6e6d53f8fcb55b8b0204 (diff) | |
download | php-git-5e24aedf46a50f5bba91383e8edd982d6c57b36f.tar.gz |
5.2.0RC1
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2006, PHP 5.2.0 +24 Jul 2006, PHP 5.2.0RC1 - Updated bundled MySQL client library to version 5.0.22 in the Windows distribution. (Edin) - Updated timezonedb to version 2006.7. (Derick) diff --git a/configure.in b/configure.in index 0dcaee6dc8..207b724f1a 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="-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 40c21ea777..63400b649b 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.2.0-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "5.2.0RC1" |