diff options
author | Sara Golemon <pollita@php.net> | 2018-11-20 14:40:21 -0500 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2018-11-20 14:40:21 -0500 |
commit | 9fc52c16b50becd3211b8a43a1f509f14ae7e6ac (patch) | |
tree | 104ee696ca13fb6a6a4307bd61829b24bfa52b6d | |
parent | 336d2086a9189006909ae06c7e95902d7d5ff77e (diff) | |
download | php-git-9fc52c16b50becd3211b8a43a1f509f14ae7e6ac.tar.gz |
Bump for 7.2.14
-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 ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2018, PHP 7.2.13 +?? ??? 2018, PHP 7.2.14 + + +06 Dec 2018, PHP 7.2.13 - ftp: . Fixed bug #77151 (ftp_close(): SSL_read on shutdown). (Remi) diff --git a/configure.ac b/configure.ac index b2ae4de5b5..faa701f5ba 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=13 +PHP_RELEASE_VERSION=14 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 4b6f8dfaa3..316ff0da12 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 13 +#define PHP_RELEASE_VERSION 14 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "7.2.13-dev" -#define PHP_VERSION_ID 70213 +#define PHP_VERSION "7.2.14-dev" +#define PHP_VERSION_ID 70214 |