diff options
author | Derick Rethans <derick@php.net> | 2006-08-12 15:48:11 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2006-08-12 15:48:11 +0000 |
commit | cc19fb16f37ca6d74eaea221df48e5ed55784f44 (patch) | |
tree | 4361d5249bcf6a3b7fea8962a45a8a53141f02dd | |
parent | b1dc9ef05c7fe893558fd3ad7d565b9dfec8afce (diff) | |
download | php-git-cc19fb16f37ca6d74eaea221df48e5ed55784f44.tar.gz |
- Back to -dev
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Aug 2006, Version 4.4.4 + 12 Aug 2006, Version 4.4.4RC1 - Fixed memory_limit on 64bit systems. (Stefan E.) - Fixed overflow on 64bit systems in str_repeat() and wordwrap(). (Stefan E.) diff --git a/configure.in b/configure.in index aee1bc38d0..c0a6cca1e7 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=4 -EXTRA_VERSION="RC1" +EXTRA_VERSION="RC2-dev" 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 c5bb034e15..d11d0a6fa3 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 4 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "4.4.4RC1" +#define PHP_EXTRA_VERSION "RC2-dev" +#define PHP_VERSION "4.4.4RC2-dev" |