diff options
author | Derick Rethans <derick@php.net> | 2005-07-01 09:54:01 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2005-07-01 09:54:01 +0000 |
commit | 7e1fa145ee811295ce21fd0b9735669dd22918b1 (patch) | |
tree | b104bddc46090d02b437bb978dc76eccc8c6f464 | |
parent | d5a7368d7227682119536bc6e135f997430806b1 (diff) | |
download | php-git-7e1fa145ee811295ce21fd0b9735669dd22918b1.tar.gz |
- GO with RC2.
-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 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2005, Version 4.4.0 +01 Jul 2005, Version 4.4.0 RC2 - Fixed bug #31213 (Sideeffects caused by fix of bug #29493). (Dmitry) - Fixed bug #28377 (debug_backtrace is intermittently passing args). (Dmitry) diff --git a/configure.in b/configure.in index ff8b8c486d..d5f3a1dc14 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=4 RELEASE_VERSION=0 -EXTRA_VERSION="RC2-dev" +EXTRA_VERSION="RC2" 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 abb3e52906..415d722c13 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 4 #define PHP_MINOR_VERSION 4 #define PHP_RELEASE_VERSION 0 -#define PHP_EXTRA_VERSION "RC2-dev" -#define PHP_VERSION "4.4.0RC2-dev" +#define PHP_EXTRA_VERSION "RC2" +#define PHP_VERSION "4.4.0RC2" |