diff options
author | Derick Rethans <derick@php.net> | 2005-06-13 14:23:34 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2005-06-13 14:23:34 +0000 |
commit | ba7a46ba5419e1038d8269930970679878606c57 (patch) | |
tree | 1017ddf7a09a693e4728cbb569d75b854d3c2caf | |
parent | d233c60165feb8042c03f8bc379704036dd00f4f (diff) | |
download | php-git-ba7a46ba5419e1038d8269930970679878606c57.tar.gz |
- Go with 4.4.0RC1.
-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 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2005, Version 4.4.0 +13 Jun 2005, Version 4.4.0 RC1 - Added man pages for "phpize" and "php-config" scripts. (Jakub Vrana) - Added support for .cc files in extensions. (Brian) - Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes diff --git a/configure.in b/configure.in index 93ad74db41..81a7971c8b 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=0 -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 f89d7dc9e7..a23d3c6e03 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 0 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "4.4.0-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "4.4.0RC1" |