summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2013-02-26 22:24:09 -0800
committerStanislav Malyshev <stas@php.net>2013-02-26 22:24:09 -0800
commit0351fd55523b8c9e437161c6334fe413280eaa6c (patch)
treea15a9820a8554db844736523b996a12c3c027e54
parent7ffb77d243897a1a9d39a6a51715d9ff3c14e02a (diff)
downloadphp-git-0351fd55523b8c9e437161c6334fe413280eaa6c.tar.gz
5.4.13 RC1php-5.4.13RC1
-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 6600eed3d9..70c5996bbd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2012, PHP 5.4.13
+28 Feb 2012, PHP 5.4.13 RC1
- Core:
. Fixed bug #64235 (Insteadof not work for class method in 5.4.11).
@@ -40,7 +40,7 @@ PHP NEWS
- SNMP:
. Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin)
-?? ??? 2012, PHP 5.4.12
+21 Feb 2012, PHP 5.4.12
- Core:
. Fixed bug #64099 (Wrong TSRM usage in zend_Register_class alias). (Johannes)
diff --git a/configure.in b/configure.in
index 3597c24afa..9d4cb4ebaf 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=13
-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 46dbbb12c8..69a05ff962 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 13
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.4.13-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.4.13RC1"
#define PHP_VERSION_ID 50413