summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-09-16 22:41:36 -0700
committerStanislav Malyshev <stas@php.net>2014-09-16 22:41:36 -0700
commitcf3465a7e27b6d8e60204f763abe1191b90649bf (patch)
treeb95aee0ba05311d69c6ba17b28e2ee07aedb450a
parentc4b6af7ae2f3100b82c7d17d87eb8268150b85e9 (diff)
downloadphp-git-cf3465a7e27b6d8e60204f763abe1191b90649bf.tar.gz
5.4.33
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index cec0088fa3..ef01a8994d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-04 Sep 2014, PHP 5.4.33 RC1
+18 Sep 2014, PHP 5.4.33
- Core:
. Fixed bug #47358 (glob returns error, should be empty array()). (Pierre)
diff --git a/configure.in b/configure.in
index 358e664056..50bd58463a 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=4
PHP_RELEASE_VERSION=33
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
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 174ada0f52..e46b21404d 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -4,6 +4,6 @@
#define PHP_MINOR_VERSION 4
#define PHP_RELEASE_VERSION 33
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.4.33RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.4.33"
#define PHP_VERSION_ID 50433