summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-03-18 23:16:57 -0700
committerStanislav Malyshev <stas@php.net>2014-03-18 23:16:57 -0700
commit179c7c59ea1c77fd681bb2da2db470e618c86ca9 (patch)
tree33625523010e52eb2d9d5111b4562cf8f79e1868
parent8c6be9f40c8f32dd2d3b8e908cde09098a74feab (diff)
downloadphp-git-179c7c59ea1c77fd681bb2da2db470e618c86ca9.tar.gz
5.4.27 rc1php-5.4.27RC1
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 302ea6c0d1..fbf09bcbd5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2014, PHP 5.4.28
-
-?? ??? 2014, PHP 5.4.27
+20 Mar 2014, PHP 5.4.27 RC1
- Core:
. Fixed bug #60602 (proc_open() changes environment array) (Tjerk)
diff --git a/configure.in b/configure.in
index dcd3e05fdb..aa0223c01c 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=4
PHP_RELEASE_VERSION=27
-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 f887b489ac..970133c8f7 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 4
#define PHP_RELEASE_VERSION 27
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.4.27-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.4.27RC1"
#define PHP_VERSION_ID 50427