summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-03-30 14:18:37 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-03-30 14:18:37 +0000
commit9b736b4d228e9dad6a958fdb433388c5b1f8b98e (patch)
treeda968f41de4de75e0288fddac2e2c375887d5f4a
parent22d260995e7de71f17f42fafd4da60428caa63c2 (diff)
downloadphp-git-9b736b4d228e9dad6a958fdb433388c5b1f8b98e.tar.gz
Tag 4.3.11
-rw-r--r--NEWS17
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 13 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index 813d4b364e..3579fa0815 100644
--- a/NEWS
+++ b/NEWS
@@ -1,17 +1,11 @@
PHP 4 NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-13 Mar 2005, Version 4.3.11RC1
+31 Mar 2005, Version 4.3.11
- 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)
- Changed phpize not to require libtool. (Jani)
- Updated bundled libmbfl library (used for multibyte functions). (Moriyoshi)
- Fixed bugs:
- . Bug #32063 (mb_convert_encoding ignores named entity 'alpha')
- . Bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes)
- . Bug #30573 (compiler warnings in libmbfl due to invalid type cast)
- . Bug #30549 (incorrect character translations for some ISO8859 charsets)
- . Bug #28220 (mb_strwidth() returns wrong width values for some hangul chars)
- Fixed several leaks in ext/browscap and sapi/embed. (Andrei)
- Fixed several leaks in ext/filepro. (Tony)
- Fixed build system to always use bundled libtool files. (Jani)
@@ -22,9 +16,13 @@ PHP 4 NEWS
- Fixed bug #32200 (Prevent using both --with-apxs2 and --with-apxs2filter).
(Jani)
- Fixed bug #32114 (DOM crashing when attribute appended to Document). (Rob)
+- Fixed bug #32063 (mb_convert_encoding ignores named entity 'alpha').
+ (Moriyoshi)
- Fixed bug #31960 (msql_fetch_row() and msql_fetch_array() dropping columns
with NULL values). (Daniel Convissor)
- Fixed bug #31936 (set_h_errno() is redefined incompatibly). (Jani)
+- Fixed bug #31911 (mb_decode_mimeheader() is case-sensitive to hex escapes).
+ (Moriyoshi)
- Fixed bug #31858 (--disable-cli does not force --without-pear). (Jani)
- Fixed bug #31842 (*date('r') does not return RFC2822 conforming date string).
(Jani)
@@ -81,6 +79,10 @@ PHP 4 NEWS
path of the request URI). (kameshj at fastmail dot fm)
- Fixed bug #30726 (-.1 like numbers are not being handled correctly). (Ilia)
- Fixed bug #30609 (cURL functions bypass open_basedir). (Jani)
+- Fixed bug #30573 (compiler warnings in libmbfl due to invalid type cast).
+ (Moriyoshi)
+- Fixed bug #30549 (incorrect character translations for some ISO8859 charsets).
+ (Moriyoshi)
- Fixed bug #30446 (apache2handler: virtual() includes files out of sequence)
- Fixed bug #30430 (odbc_next_result() doesn't bind values and that results
in segfault). (pdan-php at esync dot org, Tony)
@@ -99,6 +101,7 @@ PHP 4 NEWS
because of fflush() called on already closed filedescriptor). (Tony)
- Fixed bug #28451 (corupt EXIF headers have unlimited recursive IFD directory
entries). (Andrei)
+- Fixed bug #28220 (mb_strwidth() returns wrong width values for some hangul chars). (Moriyoshi)
- Fixed bug #28086 (crash inside overload() function). (Tony)
- Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr stream).
(chris at ex-parrot dot com)
diff --git a/configure.in b/configure.in
index bbcf82b395..96a025512e 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="RC2-dev"
+EXTRA_VERSION=""
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 75320dde89..01b50ccd49 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 "RC2-dev"
-#define PHP_VERSION "4.3.11RC2-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "4.3.11"