summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-08-23 13:17:36 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-08-23 13:17:36 +0000
commit74eb820c348f2a3d4e2f127d637af2f629ce9366 (patch)
tree078476e70b89d1c4570715d247a7ef2106bcb874
parent1e392f88156f3b5dc4fc65afd0a675b8fef91ac3 (diff)
downloadphp-git-74eb820c348f2a3d4e2f127d637af2f629ce9366.tar.gz
5.1.6
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index a57cb66f3d..44f080a8ee 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,11 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2006, PHP 5.1.6
+24 Aug 2006, PHP 5.1.6
+- Fixed memory_limit on 64bit systems. (Stefan E.)
- Fixed bug #38488 (Access to "php://stdin" and family crashes PHP on win32).
(Dmitry)
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.)
- Disabled CURLOPT_FOLLOWLOCATION in curl when open_basedir or safe_mode are
enabled. (Stefan E., Ilia)
diff --git a/configure.in b/configure.in
index 9e28b74ad3..d716ada418 100644
--- a/configure.in
+++ b/configure.in
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
MAJOR_VERSION=5
MINOR_VERSION=1
RELEASE_VERSION=6
-EXTRA_VERSION="-dev"
+EXTRA_VERSION=""
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 6dedf6ddfb..30d7156589 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,5 +3,5 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 6
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.1.6-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.1.6"