diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-03-13 20:18:44 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-03-13 20:18:44 +0000 |
commit | 36c0a0859aff8da9327752ca6ea025fdd14b4eca (patch) | |
tree | b7640667d1e3ce1997ff2fe238849327198bf03a | |
parent | 49de3e701c6e1a1de2bd8336645b6595fa4fe72e (diff) | |
download | php-git-36c0a0859aff8da9327752ca6ea025fdd14b4eca.tar.gz |
4.3.11RC1
-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 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? ????, Version 4.3.11 +13 Mar 2005, Version 4.3.11RC1 - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony) - Added checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem() and gmp_fact() to prevent SIGFPE. (Tony) diff --git a/configure.in b/configure.in index aefec10fef..33e148ce7c 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=3 RELEASE_VERSION=11 -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 40872f9f2b..8d2a8b4f55 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 4 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 11 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "4.3.11-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "4.3.11RC1" |