summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2014-05-14 10:17:52 +0200
committerJulien Pauli <jpauli@php.net>2014-05-14 10:17:52 +0200
commit0c24fdb4640578c038f34216a1e807518ebec130 (patch)
tree06ce6401d8c6c21a0377d39a4207354f1f992a43
parentb17efe82ff8f0b3c4fd80fc693c914a436e1ebb6 (diff)
downloadphp-git-0c24fdb4640578c038f34216a1e807518ebec130.tar.gz
Prepare for 5.5.13RC1php-5.5.13RC1
-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 5bc0a0464b..ae9ae8500b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2014, PHP 5.5.13
+15 May 2014, PHP 5.5.13RC1
- CLI server:
. Fixed bug #67079 (Missing MIME types for XML/XSL files). (Anatol)
diff --git a/configure.in b/configure.in
index 445df76ed2..9eb3d1abbf 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=5
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 4574767493..c596c2b84e 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 13
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.13-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.5.13RC1"
#define PHP_VERSION_ID 50513