diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-08-15 13:17:08 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-08-15 13:17:08 +0000 |
commit | b5a9e753ecd94dd07813322cd1dde50f081f9c20 (patch) | |
tree | 634497db14ccdb27efcffedffaf256c746328786 | |
parent | 407caf3a0c260e37985693201cda727a1b0dc128 (diff) | |
download | php-git-b5a9e753ecd94dd07813322cd1dde50f081f9c20.tar.gz |
Back to dev
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | main/php_version.h | 6 |
3 files changed, 7 insertions, 5 deletions
@@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2006, PHP 5.1.6 + 17 Aug 2006, PHP 5.1.5 - Fixed memory_limit on 64bit systems. (Stefan E.) - Fixed overflow on 64bit systems in str_repeat() and wordwrap(). (Stefan E.) diff --git a/configure.in b/configure.in index a440a38c0c..9e28b74ad3 100644 --- a/configure.in +++ b/configure.in @@ -41,8 +41,8 @@ AC_CONFIG_HEADER(main/php_config.h) MAJOR_VERSION=5 MINOR_VERSION=1 -RELEASE_VERSION=5 -EXTRA_VERSION="" +RELEASE_VERSION=6 +EXTRA_VERSION="-dev" VERSION="$MAJOR_VERSION.$MINOR_VERSION.$RELEASE_VERSION$EXTRA_VERSION" dnl Define where extension directories are located in the configure context diff --git a/main/php_version.h b/main/php_version.h index d51fdb707f..6dedf6ddfb 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -2,6 +2,6 @@ /* edit configure.in to change version number */ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 1 -#define PHP_RELEASE_VERSION 5 -#define PHP_EXTRA_VERSION "" -#define PHP_VERSION "5.1.5" +#define PHP_RELEASE_VERSION 6 +#define PHP_EXTRA_VERSION "-dev" +#define PHP_VERSION "5.1.6-dev" |