diff options
author | Sara Golemon <pollita@php.net> | 2019-05-14 20:22:00 -0400 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2019-05-14 20:22:00 -0400 |
commit | 4fa32d67bf3fbea0241f0e786dbcb5517d25e1a2 (patch) | |
tree | da1756782d937839a709210b0f6df473951407ab | |
parent | 5c4d125d4c2976236e2ecddd1d8c6e7b113ec482 (diff) | |
download | php-git-4fa32d67bf3fbea0241f0e786dbcb5517d25e1a2.tar.gz |
Bump for 7.2.20
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | main/php_version.h | 6 |
3 files changed, 8 insertions, 5 deletions
@@ -1,6 +1,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2019, PHP 7.2.19 +?? ??? 2019, PHP 7.2.20 + + +30 May 2019, PHP 7.2.19 - FPM: . Fixed bug #77934 (php-fpm kill -USR2 not working). (Jakub Zelenka) diff --git a/configure.ac b/configure.ac index 312d4035de..802d5167ba 100644 --- a/configure.ac +++ b/configure.ac @@ -107,7 +107,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=7 PHP_MINOR_VERSION=2 -PHP_RELEASE_VERSION=19 +PHP_RELEASE_VERSION=20 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` diff --git a/main/php_version.h b/main/php_version.h index 8885963e41..ba544449a0 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 7 #define PHP_MINOR_VERSION 2 -#define PHP_RELEASE_VERSION 19 +#define PHP_RELEASE_VERSION 20 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "7.2.19-dev" -#define PHP_VERSION_ID 70219 +#define PHP_VERSION "7.2.20-dev" +#define PHP_VERSION_ID 70220 |