summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2010-02-11 12:35:44 +0000
committerIlia Alshanetsky <iliaa@php.net>2010-02-11 12:35:44 +0000
commit20ce3f280ae5a490589f9d6473ee9b51eba918f6 (patch)
tree13ddef632283c3197cd07f119d96b5e42dcff719
parent14391b64f6fdf255f342513c648188d247e0a7f9 (diff)
downloadphp-git-20ce3f280ae5a490589f9d6473ee9b51eba918f6.tar.gz
Back to dev
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 640ec8324e..0e45222420 100644
--- a/NEWS
+++ b/NEWS
@@ -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