summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-06-20 12:27:04 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-06-20 12:27:04 +0200
commitd428155055a86e24616ff2daf46f22842b043360 (patch)
tree18ddbe66f67ef0d33add13cbf41c02d9322f55d4
parent0e7490f49e2d1a55f86927cdf5818cacea4e220b (diff)
downloadphp-git-php-7.3.7RC3.tar.gz
Prepare for PHP 7.3.7RC3php-7.3.7RC3
-rw-r--r--NEWS3
-rw-r--r--Zend/zend.h2
-rw-r--r--configure.ac2
-rw-r--r--main/php_version.h4
4 files changed, 6 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 84f30a7803..89c5d232aa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,11 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-20 Jun 2019, PHP 7.3.7RC2
+20 Jun 2019, PHP 7.3.7RC3
- Opcache:
. Fixed bug #78106 (Path resolution fails if opcache disabled during request).
(Nikita)
+ . Fixed bug #78185 (File cache no longer works). (Dmitry)
13 Jun 2019, PHP 7.3.7RC1
diff --git a/Zend/zend.h b/Zend/zend.h
index 61f832032d..a1d84dcc5f 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -20,7 +20,7 @@
#ifndef ZEND_H
#define ZEND_H
-#define ZEND_VERSION "3.3.7RC2"
+#define ZEND_VERSION "3.3.7RC3"
#define ZEND_ENGINE_3
diff --git a/configure.ac b/configure.ac
index 1f41f4602c..0a68bc8ce7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=3
PHP_RELEASE_VERSION=7
-PHP_EXTRA_VERSION="RC2"
+PHP_EXTRA_VERSION="RC3"
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 27dbe27448..2ff950c357 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 7
-#define PHP_EXTRA_VERSION "RC2"
-#define PHP_VERSION "7.3.7RC2"
+#define PHP_EXTRA_VERSION "RC3"
+#define PHP_VERSION "7.3.7RC3"
#define PHP_VERSION_ID 70307