summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkrakjoe <krakjoe@php.net>2017-12-05 14:16:17 +0100
committerkrakjoe <krakjoe@php.net>2017-12-05 14:16:17 +0100
commit049f993190d73ded614d84291412aabc8600daf6 (patch)
treefe65be20dbfb1181d1853920119b5f3c8f1fc279
parent3110bc10f5350f03b4f0248196ede2c7276a6a2a (diff)
downloadphp-git-049f993190d73ded614d84291412aabc8600daf6.tar.gz
set versionsphp-7.1.13RC1
-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 a776aed63f..9c397637c5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2017, PHP 7.1.13
+07 Dec 2017, PHP 7.1.13RC1
- Core:
. Fixed bug #75573 (Segmentation fault in 7.1.12 and 7.0.26). (Laruence)
diff --git a/configure.in b/configure.in
index d9086f581e..22da3259d1 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=1
PHP_RELEASE_VERSION=13
-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 3a1e5ff67d..f79a685684 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 13
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.1.13-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.1.13RC1"
#define PHP_VERSION_ID 70113