summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2013-07-31 10:41:15 +0200
committerJulien Pauli <jpauli@php.net>2013-07-31 10:41:15 +0200
commite3fcf452a39e4bbdc55058a383f6da3be6eb8b15 (patch)
tree1ba60c0bc1c8c95ce7ae4614cb7729abe5995ff3
parentd9e2dc80844e0f371a3a7f5b40933a5938a240f4 (diff)
downloadphp-git-php-5.5.2RC1.tar.gz
prepare for PHP5.5.2RC1php-5.5.2RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 60b2760b39..3faf14e968 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2013, PHP 5.5.2
+31 Jul 2013, PHP 5.5.2 RC1
- Core:
. Fixed value of FILTER_SANITIZE_FULL_SPECIAL_CHARS constant (previously was
diff --git a/configure.in b/configure.in
index ca5db6cabb..cd4810b5a6 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=2
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="RC1"
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 e760d29346..be26ffa2be 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 2
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.2-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.5.2RC1"
#define PHP_VERSION_ID 50502