From 64918fee97cbd050cc4ef233a23f27ff99e23ca3 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Wed, 19 May 2021 19:18:56 +0000 Subject: [PATCH] Prep for 8.0.8 --- NEWS | 12 +++++++----- configure.ac | 2 +- main/php_version.h | 6 +++--- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index dd9d7184aaa..895de18a1f6 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,12 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2021, PHP 8.0.7 +?? ??? 2021, PHP 8.0.8 + +- Standard: + . Fixed bug #81048 (phpinfo(INFO_VARIABLES) "Array to string conversion"). + (cmb) + +03 Jun 2021, PHP 8.0.7 - Core: . Fixed bug #80960 (opendir() warning wrong info when failed on Windows). @@ -52,10 +58,6 @@ PHP NEWS . Fixed bug #80933 (SplFileObject::DROP_NEW_LINE is broken for NUL and CR). (cmb, Nikita) -- Standard: - . Fixed bug #81048 (phpinfo(INFO_VARIABLES) "Array to string conversion"). - (cmb) - - XMLReader: . Fixed bug #73246 (XMLReader: encoding length not checked). (cmb) diff --git a/configure.ac b/configure.ac index 47b8bf7b2a9..541ce136bd2 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice. dnl ---------------------------------------------------------------------------- AC_PREREQ([2.68]) -AC_INIT([PHP],[8.0.7-dev],[https://bugs.php.net],[php],[https://www.php.net]) +AC_INIT([PHP],[8.0.8-dev],[https://bugs.php.net],[php],[https://www.php.net]) AC_CONFIG_SRCDIR([main/php_version.h]) AC_CONFIG_AUX_DIR([build]) AC_PRESERVE_HELP_ORDER diff --git a/main/php_version.h b/main/php_version.h index 2611695f48a..ff5fe6bab97 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.ac to change version number */ #define PHP_MAJOR_VERSION 8 #define PHP_MINOR_VERSION 0 -#define PHP_RELEASE_VERSION 7 +#define PHP_RELEASE_VERSION 8 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "8.0.7-dev" -#define PHP_VERSION_ID 80007 +#define PHP_VERSION "8.0.8-dev" +#define PHP_VERSION_ID 80008