summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2018-10-24 08:42:01 +0200
committerJoe Watkins <krakjoe@php.net>2018-10-24 08:42:01 +0200
commit28395e54f96ba6146e164c06bae4489e68eb8776 (patch)
tree4f3b9b2d012e7825f950098c46b5beba929ea1da
parent41241d109a1f1dec884aee8e8bddf27f4053b2c3 (diff)
downloadphp-git-28395e54f96ba6146e164c06bae4489e68eb8776.tar.gz
set versions for RCphp-7.1.24RC1
-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 399bb1ce56..0f67789d8d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2018, PHP 7.1.24
+08 Nov 2018, PHP 7.1.24
- Core:
. Fixed bug #76946 (Cyclic reference in generator not detected). (Nikita)
diff --git a/configure.in b/configure.in
index 3cb3335709..e35ce9d307 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=24
-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 c5ddedfe69..49434f4fd0 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 24
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.1.24-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.1.24RC1"
#define PHP_VERSION_ID 70124