This commit is contained in:
Ilia Alshanetsky 2006-09-01 01:06:14 +00:00
parent d63e411e9a
commit 98d26b6b18
3 changed files with 4 additions and 4 deletions

2
NEWS
View File

@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Sep 2006, PHP 5.2.0
31 Aug 2006, PHP 5.2.0RC3
- Updated PCRE to version 6.7. (Ilia)
- Added SoapServer::setObject() method (it is a simplified version of
SoapServer::setClass() method). (Dmitry)

View File

@ -44,7 +44,7 @@ AC_CONFIG_HEADER(main/php_config.h)
MAJOR_VERSION=5
MINOR_VERSION=2
RELEASE_VERSION=0
EXTRA_VERSION="RC3-dev"
EXTRA_VERSION="RC3"
PHP_VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]MAJOR_VERSION \* 10000 + [$]MINOR_VERSION \* 100 + [$]RELEASE_VERSION`

View File

@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 2
#define PHP_RELEASE_VERSION 0
#define PHP_EXTRA_VERSION "RC3-dev"
#define PHP_VERSION "5.2.0RC3-dev"
#define PHP_EXTRA_VERSION "RC3"
#define PHP_VERSION "5.2.0RC3"
#define PHP_VERSION_ID 50200