summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2012-07-03 22:43:14 -0700
committerStanislav Malyshev <stas@php.net>2012-07-03 22:43:14 -0700
commitda4e5307b9e8c083182f6d0c09fd9b272dd38932 (patch)
treeff455a1f7eeb0c874c88ed7624d32e5b45ecac89
parent91ce8041a3e85594e81466a528f8d55cdc164c1f (diff)
downloadphp-git-da4e5307b9e8c083182f6d0c09fd9b272dd38932.tar.gz
5.4.5 RC1php-5.4.5RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 70a8eb9ec0..c9b035b98c 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2012, PHP 5.4.5
+05 Jul 2012, PHP 5.4.5 RC1
+
- Core:
. Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed
Salt). (Anthony Ferrara)
diff --git a/configure.in b/configure.in
index 1e80689922..88752f63fc 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="-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 4b7709c552..8354e12b5c 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 "-dev"
-#define PHP_VERSION "5.4.5-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.4.5RC1"
#define PHP_VERSION_ID 50405