diff options
author | Derick Rethans <derick@php.net> | 2008-01-03 08:21:22 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-01-03 08:21:22 +0000 |
commit | ccacb9fefc4518a7544602334aaf785b80518c18 (patch) | |
tree | 74d1214a74a168d6e37e4a8740264274069dcf55 | |
parent | 51a34ef7ed23ccb235882dfb878a04ecc407dcf9 (diff) | |
download | php-git-ccacb9fefc4518a7544602334aaf785b80518c18.tar.gz |
- Go with PHP 4.4.8.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 3 insertions, 5 deletions
@@ -1,8 +1,6 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 03 Jan 2008, Version 4.4.8 - -20 Dec 2007, Version 4.4.8RC1 - Improved fix for MOPB-02-2007. (Ilia) - Fixed an integer overflow inside chunk_split(). Identified by Gerhard Wagner. (Ilia) diff --git a/configure.in b/configure.in index cecefa2156..63337154d7 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=8 -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 d37ba41d5f..22fc626964 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 8 -#define PHP_EXTRA_VERSION "RC2-dev" -#define PHP_VERSION "4.4.8RC2-dev" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "4.4.8" |