diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-03-09 14:22:59 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-03-09 14:22:59 +0000 |
commit | fe13b8ef692a505786bb42423e1836e1fc014547 (patch) | |
tree | a91389168805bbfbdd22293e0144796ccc9e7a83 | |
parent | b04ecd08d2712803af076377e1185a2baad13f80 (diff) | |
download | php-git-fe13b8ef692a505786bb42423e1836e1fc014547.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 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Mar 2006, PHP 5.1.3RC2 + 09 Mar 2006, PHP 5.1.3RC1 - Updated PCRE to version 6.6. (Andrei) - Moved extensions to PECL: diff --git a/configure.in b/configure.in index 51e5ea025d..796c040193 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=1 RELEASE_VERSION=3 -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 3a5dacd00e..1d9f4335d1 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,5 +3,5 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 1 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "5.1.3RC1" +#define PHP_EXTRA_VERSION "RC2-dev" +#define PHP_VERSION "5.1.3RC2-dev" |