diff options
author | Joe Watkins <krakjoe@php.net> | 2017-01-05 16:50:52 +0000 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-01-05 16:50:52 +0000 |
commit | e627aa98417171120fa392786758e028e2283e93 (patch) | |
tree | d5ab606367a6ff4a62c76d63d00c0da510782cab | |
parent | 34c1040e2218dfb54649c2bbd0ef958a5826454e (diff) | |
download | php-git-e627aa98417171120fa392786758e028e2283e93.tar.gz |
bump version after release
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 7 insertions, 4 deletions
@@ -1,6 +1,9 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2017, PHP 7.1.1 +?? ??? 2017, PHP 7.1.2 + + +07 Jan 2017, PHP 7.1.1 - Core: . Fixed bug #73792 (invalid foreach loop hangs script). (Dmitry) diff --git a/configure.in b/configure.in index 69c2421344..400a938425 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=7 PHP_MINOR_VERSION=1 -PHP_RELEASE_VERSION=1 +PHP_RELEASE_VERSION=2 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 791b2cefa4..d8084f7d91 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,7 +2,7 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 1 -#define PHP_RELEASE_VERSION 1 +#define PHP_RELEASE_VERSION 2 #define PHP_EXTRA_VERSION "-dev" #define PHP_VERSION "7.1.1-dev" -#define PHP_VERSION_ID 70101 +#define PHP_VERSION_ID 70102 |