diff options
author | Derick Rethans <derick@php.net> | 2008-08-06 08:32:30 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-08-06 08:32:30 +0000 |
commit | bd5c8eda11e79e94a21ad7163f403661b3c6e14f (patch) | |
tree | 43c2df47e3782bcc0975f165b77fde40daa96b14 | |
parent | eed9061d170a3f2283dc6becaee5e68f8aeea525 (diff) | |
download | php-git-bd5c8eda11e79e94a21ad7163f403661b3c6e14f.tar.gz |
- 4.4.9, rock and roll.
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 5 insertions, 7 deletions
@@ -1,10 +1,8 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? Aug 2008, Version 4.4.9 -- Fixed overflow in memnstr(). (Reported by Laurent Gaffie, Derick) - -22 Jul 2008, Version 4.4.9RC1 +07 Aug 2008, Version 4.4.9 - Updated PCRE to version 7.7. (Nuno) +- Fixed overflow in memnstr(). (Reported by Laurent Gaffie, Derick) - Fixed crash in imageloadfont when an invalid font is given. (discovered by CzechSec, fixed by Pierre) - Fixed open_basedir handling issue in the curl extension. (Stas) diff --git a/configure.in b/configure.in index 880b7947e8..95b6f13016 100644 --- a/configure.in +++ b/configure.in @@ -38,7 +38,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=4 MINOR_VERSION=4 RELEASE_VERSION=9 -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 6d7cbebd5e..a321052754 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 9 -#define PHP_EXTRA_VERSION "RC2-dev" -#define PHP_VERSION "4.4.9RC2-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "4.4.9" |