diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2010-02-11 12:35:44 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2010-02-11 12:35:44 +0000 |
commit | 20ce3f280ae5a490589f9d6473ee9b51eba918f6 (patch) | |
tree | 13ddef632283c3197cd07f119d96b5e42dcff719 | |
parent | 14391b64f6fdf255f342513c648188d247e0a7f9 (diff) | |
download | php-git-20ce3f280ae5a490589f9d6473ee9b51eba918f6.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 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Feb 2010, PHP 5.2.13 + 11 Feb 2010, PHP 5.2.13RC2 - Downgrade bundled PCRE to version 7.9. (Ilia) - Fixed safe_mode validation inside tempnam() when the directory path does diff --git a/configure.in b/configure.in index ba4dea5bbc..f78dc091cc 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h) PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=2 PHP_RELEASE_VERSION=13 -PHP_EXTRA_VERSION="RC2" +PHP_EXTRA_VERSION="RC3-dev" PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION" PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION` diff --git a/main/php_version.h b/main/php_version.h index dc09eaa38a..5fad15df6c 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 2 #define PHP_RELEASE_VERSION 13 -#define PHP_EXTRA_VERSION "RC2" -#define PHP_VERSION "5.2.13RC2" +#define PHP_EXTRA_VERSION "RC3-dev" +#define PHP_VERSION "5.2.13RC3-dev" #define PHP_VERSION_ID 50213 |