summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-02-17 21:18:09 -0800
committerStanislav Malyshev <stas@php.net>2014-02-17 21:18:09 -0800
commitcbf5581d8268d12f774485d7c26b15eed9013ef2 (patch)
treea3ff34b9ba51074a3c32b43dc8d33d05d1a3cea0
parentb79d2285dfe92a726f5331cc84882ff35e94395f (diff)
downloadphp-git-cbf5581d8268d12f774485d7c26b15eed9013ef2.tar.gz
5.4.26 RC1
-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 4ac8ef3dcf..912e72048f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2014, PHP 5.4.26
-
-?? ??? 2014, PHP 5.4.26
+20 Feb 2014, PHP 5.4.26 RC1
- JSON:
. Fixed bug #65753 (JsonSerializeable couldn't implement on module extension)
diff --git a/configure.in b/configure.in
index 4764390acc..61b455f6cc 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=26
-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 11791b14bd..1b79ceab9f 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 26
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.4.26-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.4.26RC1"
#define PHP_VERSION_ID 50426