com php-src: bump version for release: NEWS configure.in main/php_version.h
[email protected] (Joe Watkins)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 9f1492bb895ce297c660bde3fabb5e27a20a7cbd Author: Joe Watkins <[email protected]> Tue, 14 Mar 2017 13:16:07 +0000 Parents: e6e45428d3e227bb09b3502b5467c599bc699da0 Branches: PHP-7.1.3 Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=9f1492bb895ce297c660bde3fabb5e27a20a7cbd Log: bump version for release Changed paths: M NEWS M configure.in M main/php_version.h Diff: diff --git a/NEWS b/NEWS index 89d26f3..6658dd9 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -16 Mar 2017, PHP 7.1.3RC1 +16 Mar 2017, PHP 7.1.3 - Core: . Fixed bug #74157 (Segfault with nested generators). (Laruence) diff --git a/configure.in b/configure.in index 67f2b09..e53eb55 100644 --- a/configure.in +++ b/configure.in @@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=7 PHP_MINOR_VERSION=1 PHP_RELEASE_VERSION=3 -PHP_EXTRA_VERSION="RC1" +PHP_EXTRA_VERSION="" 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 c681e7b..ad2208f 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 1 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "7.1.3RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "7.1.3" #define PHP_VERSION_ID 70103