diff options
author | Derick Rethans <derick@php.net> | 2008-07-22 07:38:38 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2008-07-22 07:38:38 +0000 |
commit | 57f0b5015874c4e52b4a282dad53afef9373630a (patch) | |
tree | 08304a4ae20d506f707b665984bafb26efa0bf0d | |
parent | 861c352d76075af61bd86c826b5e338dbf24c432 (diff) | |
download | php-git-57f0b5015874c4e52b4a282dad53afef9373630a.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 2008, Version 4.4.9 + 22 Jul 2008, Version 4.4.9RC1 - Updated PCRE to version 7.7. (Nuno) - Fixed crash in imageloadfont when an invalid font is given. diff --git a/configure.in b/configure.in index d4e7cb1cbc..880b7947e8 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="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 16c392690f..6d7cbebd5e 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 "RC1" -#define PHP_VERSION "4.4.9RC1" +#define PHP_EXTRA_VERSION "RC2-dev" +#define PHP_VERSION "4.4.9RC2-dev" |