diff options
author | Anatol Belski <ab@php.net> | 2017-06-20 14:25:24 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2017-06-20 14:25:24 +0200 |
commit | d37583f95a142e802299ca1d6f7aef5a1d8176a6 (patch) | |
tree | 2f220e02b3ff12223b88fce3b6b982aeeab15a13 | |
parent | 27d681435174433c3a9b0b8325361dfa383be0a6 (diff) | |
download | php-git-d37583f95a142e802299ca1d6f7aef5a1d8176a6.tar.gz |
set versions
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -?? ??? 2017 PHP 7.0.21 +22 Jun 2017 PHP 7.0.21 - Core: . Fixed bug #74738 (Multiple [PATH=] and [HOST=] sections not properly diff --git a/configure.in b/configure.in index 72b155614e..5ff3da3e6c 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=0 PHP_RELEASE_VERSION=21 -PHP_EXTRA_VERSION="-dev" +PHP_EXTRA_VERSION="RC1" 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 a8e6712a54..070d8f4d1d 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 0 #define PHP_RELEASE_VERSION 21 -#define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "7.0.21-dev" +#define PHP_EXTRA_VERSION "RC1" +#define PHP_VERSION "7.0.21RC1" #define PHP_VERSION_ID 70021 |