diff options
author | Stanislav Malyshev <stas@php.net> | 2014-06-10 23:03:40 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-06-10 23:03:40 -0700 |
commit | 979eed5c6bb437d53d27745925663eb8c31640a5 (patch) | |
tree | 4f01a5f7e2864365fff19918faa30ff757fe0392 | |
parent | 6256b79a3531bd9f0f57c09526a5fd033e418c60 (diff) | |
download | php-git-979eed5c6bb437d53d27745925663eb8c31640a5.tar.gz |
5.4.31 next
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 6 |
3 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2014, PHP 5.4.31 + ?? ??? 2014, PHP 5.4.30 - Core: diff --git a/configure.in b/configure.in index 855bcbb2c8..9ea4e37526 100644 --- a/configure.in +++ b/configure.in @@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...); PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=4 -PHP_RELEASE_VERSION=30 +PHP_RELEASE_VERSION=31 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 59eb939959..ab1d4eed79 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,8 +2,8 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 4 -#define PHP_RELEASE_VERSION 30 +#define PHP_RELEASE_VERSION 31 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.4.30-dev" -#define PHP_VERSION_ID 50430 +#define PHP_VERSION "5.4.31-dev" +#define PHP_VERSION_ID 50431 |