summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-09-02 15:02:07 -0700
committerStanislav Malyshev <stas@php.net>2014-09-02 15:02:07 -0700
commitc4b6af7ae2f3100b82c7d17d87eb8268150b85e9 (patch)
tree57bf9bc68a44a9d5053d885aa71e447688e6564d
parentfe551c089a7d309e3fa08513f1d1e287141cd202 (diff)
downloadphp-git-c4b6af7ae2f3100b82c7d17d87eb8268150b85e9.tar.gz
5.4.33 RC1php-5.4.33RC1
-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 a20f11a5ec..cec0088fa3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2014, PHP 5.4.33
+04 Sep 2014, PHP 5.4.33 RC1
- Core:
. Fixed bug #47358 (glob returns error, should be empty array()). (Pierre)
diff --git a/configure.in b/configure.in
index 8704d73b72..358e664056 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="-dev"
+PHP_EXTRA_VERSION="RC1"
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 f96fab142f..174ada0f52 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 "-dev"
-#define PHP_VERSION "5.4.33-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.4.33RC1"
#define PHP_VERSION_ID 50433