diff options
author | Johannes Schlüter <johannes@php.net> | 2011-03-02 22:03:38 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2011-03-02 22:03:38 +0000 |
commit | bf5a3715f41053a1582d399ea73d0a6a6daf6dd3 (patch) | |
tree | b75d8c592c6469afbd01807c8868fdfe375ebf41 | |
parent | 0ec836440249d0ffc5350fa7744a54c384ccdc68 (diff) | |
download | php-git-bf5a3715f41053a1582d399ea73d0a6a6daf6dd3.tar.gz |
Back to -dev
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2011, PHP 5.3.6 + 03 Mar 2011, PHP 5.3.6RC2 - Zend Engine: . Fixed bug #43512 (same parameter name can be used multiple times in diff --git a/configure.in b/configure.in index 34f32f5548..b84759ae85 100644 --- a/configure.in +++ b/configure.in @@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h) PHP_MAJOR_VERSION=5 PHP_MINOR_VERSION=3 PHP_RELEASE_VERSION=6 -PHP_EXTRA_VERSION="RC2" +PHP_EXTRA_VERSION="RC3-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 813d637e9c..02ad826c18 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 5 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 6 -#define PHP_EXTRA_VERSION "RC2" -#define PHP_VERSION "5.3.6RC2" +#define PHP_EXTRA_VERSION "RC3-dev" +#define PHP_VERSION "5.3.6RC3-dev" #define PHP_VERSION_ID 50306 |