summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-07-17 23:19:16 -0700
committerStanislav Malyshev <stas@php.net>2012-07-17 23:19:16 -0700
commit86d7c5866fa6b9247c9ca0bb60d7aad63c1f4ee8 (patch)
tree1d6bfc3d529abcc949e34cfc6c9e269a04a0c1e1
parenta66b5c9a289f5bfc392e1fd9ae13981e84a465ac (diff)
downloadphp-git-PHP-5.4.5.tar.gz
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index c9b035b98c..bc43406537 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2012, PHP 5.4.5
-
-05 Jul 2012, PHP 5.4.5 RC1
+19 Jul 2012, PHP 5.4.5
- Core:
. Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed
diff --git a/configure.in b/configure.in
index 88752f63fc..8ca71a1271 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=5
-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 8354e12b5c..7db820ebd8 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 4
#define PHP_RELEASE_VERSION 5
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.4.5RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.4.5"
#define PHP_VERSION_ID 50405