]> granicus.if.org Git - php/commitdiff
Prepare main branch for PHP 7.3.3
authorChristoph M. Becker <cmbecker69@gmx.de>
Tue, 22 Jan 2019 13:04:03 +0000 (14:04 +0100)
committerChristoph M. Becker <cmbecker69@gmx.de>
Tue, 22 Jan 2019 13:04:03 +0000 (14:04 +0100)
NEWS
Zend/zend.h
configure.ac
main/php_version.h

diff --git a/NEWS b/NEWS
index 656e4ab70eaa9df9a2edf128af39bccd8108589c..5f1a7339db41814c9b7f49fb25ef23778dd15d6b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? ????, PHP 7.3.2
+?? ??? ????, PHP 7.3.3
+
+- Opcache:
+  . Fixed bug #77287 (Opcache literal compaction is incompatible with EXT
+    opcodes). (Nikita)
+
+07 Feb 2019, PHP 7.3.2
 
 - Core:
   . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas)
@@ -61,8 +67,6 @@ PHP                                                                        NEWS
     (Nikita)
   . Fixed bug #77361 (configure fails on 64-bit AIX when opcache enabled).
     (Kevin Adler)
-  . Fixed bug #77287 (Opcache literal compaction is incompatible with EXT
-    opcodes). (Nikita)
 
 - PCRE:
   . Fixed bug #77338 (get_browser with empty string). (Nikita)
index 7e11d5345561ad3bb8b50bd7ffa22543ff49bce8..8e8053ab7e1c691afd20b1c03eaf530f3f8542fc 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef ZEND_H
 #define ZEND_H
 
-#define ZEND_VERSION "3.3.2-dev"
+#define ZEND_VERSION "3.3.3-dev"
 
 #define ZEND_ENGINE_3
 
index 660b43a343c6f44fbec4ac0c885e43af166bc3a6..809f783907ff3c004d5dacbe794e7d1b6280342b 100644 (file)
@@ -107,7 +107,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
 
 PHP_MAJOR_VERSION=7
 PHP_MINOR_VERSION=3
-PHP_RELEASE_VERSION=2
+PHP_RELEASE_VERSION=3
 PHP_EXTRA_VERSION="-dev"
 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`
index e91794faaeb64cda3d415a8da884cd6a3ea4e39b..f1799ea9f9bff09a5f38efd4ab96bd97d5b71315 100644 (file)
@@ -2,7 +2,7 @@
 /* edit configure.ac to change version number */
 #define PHP_MAJOR_VERSION 7
 #define PHP_MINOR_VERSION 3
-#define PHP_RELEASE_VERSION 2
+#define PHP_RELEASE_VERSION 3
 #define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.3.2-dev"
-#define PHP_VERSION_ID 70302
+#define PHP_VERSION "7.3.3-dev"
+#define PHP_VERSION_ID 70303