diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | main/php_version.h | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -1,8 +1,10 @@ PHP 4.0 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| -21 February 2000 Version 4.0 Beta 4 patch level 1 +???, Version 4.0 Beta 5 - Fixed OCI8 crash when returning cursors from stored-procedures. (Thies) + +21 February 2000 Version 4.0 Beta 4 patch level 1 - Fixed crash when magic_quotes were switched off. (Thies) - Support for pdflib 2.30 (Uwe) diff --git a/configure.in b/configure.in index 7411dead6b..4126e13e92 100644 --- a/configure.in +++ b/configure.in @@ -52,7 +52,7 @@ divert(2) PHP_CONFIGURE_PART(Running system checks) dnl ## This is where the version number is changed from now on! -AM_INIT_AUTOMAKE(php, 4.0b4pl1) +AM_INIT_AUTOMAKE(php, 4.0b5-dev) PHP_VERSION=$VERSION echo "/* automatically generated by configure */" > php_version.h.new diff --git a/main/php_version.h b/main/php_version.h index cbcbda1062..001b79478d 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -1,3 +1,3 @@ /* automatically generated by configure */ /* edit configure.in.in to change version number */ -#define PHP_VERSION "4.0b4pl1" +#define PHP_VERSION "4.0b5-dev" |