diff options
author | Adam Harvey <aharvey@php.net> | 2013-10-23 12:36:27 -0700 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2013-10-23 12:36:27 -0700 |
commit | 70c3a722e2561cb33d408f3c65e58f9468d2f667 (patch) | |
tree | 42bb7e3cb27f1d7eafa4f6155781a3ad58eaf517 | |
parent | 0adba0abb9df1493c8b38299d4139d7bf0ecc4f5 (diff) | |
download | php-git-70c3a722e2561cb33d408f3c65e58f9468d2f667.tar.gz |
Increment version number, since this will be 5.5.6.
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 40130626cb..7e444b0ac4 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=5 -PHP_RELEASE_VERSION=5 +PHP_RELEASE_VERSION=6 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 d9ea4aab3c..2d98a3f807 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 5 #define PHP_MINOR_VERSION 5 -#define PHP_RELEASE_VERSION 5 +#define PHP_RELEASE_VERSION 6 #define PHP_EXTRA_VERSION "-dev" -#define PHP_VERSION "5.5.5-dev" -#define PHP_VERSION_ID 50505 +#define PHP_VERSION "5.5.6-dev" +#define PHP_VERSION_ID 50506 |