diff options
author | Johannes Schlüter <johannes@php.net> | 2010-07-14 23:40:42 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2010-07-14 23:40:42 +0000 |
commit | 50554563af8f57fb4163e0349479dd929067ef9c (patch) | |
tree | 3d6b8700e0b0d65eeb2a952631563167c2df9cf0 | |
parent | 6d85947b5241d0ca180bd811045656815cd31df4 (diff) | |
download | php-git-50554563af8f57fb4163e0349479dd929067ef9c.tar.gz |
Back to -dev
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? Jul 2010, PHP 5.3.3 + + 15 Jul 2010, PHP 5.3.3 RC3 - Rewrote var_export() to use smart_str rather than output buffering, prevents data disclosure if a fatal error occurs. (Scott) diff --git a/configure.in b/configure.in index 3b10391d16..ed9825aa3b 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=3 -PHP_EXTRA_VERSION="RC3" +PHP_EXTRA_VERSION="RC4-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 ebe834b07f..254c3859a3 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 3 -#define PHP_EXTRA_VERSION "RC3" -#define PHP_VERSION "5.3.3RC3" +#define PHP_EXTRA_VERSION "RC4-dev" +#define PHP_VERSION "5.3.3RC4-dev" #define PHP_VERSION_ID 50303 |