summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2015-03-31 16:03:52 +0200
committerJulien Pauli <jpauli@php.net>2015-03-31 16:03:52 +0200
commit8e3e034469d37d6dcc70245c12d5e950339908e2 (patch)
treed004ed6f49dfd5d78b9f40feb3d4018cb028fd81
parent2c117a40a7e7241f911db662b5401ebe2bc3c386 (diff)
downloadphp-git-8e3e034469d37d6dcc70245c12d5e950339908e2.tar.gz
5.5.24RC1php-5.5.24RC1
-rw-r--r--NEWS8
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 7 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 862ef6a3fa..960a687ef4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2015, PHP 5.5.24
+02 Apr 2015, PHP 5.5.24RC1
- Core:
. Fixed bug #66609 (php crashes with __get() and ++ operator in some cases).
@@ -17,13 +17,13 @@ PHP NEWS
. Fixed bug #69221 (Segmentation fault when using a generator in combination
with an Iterator). (Nikita)
+- Curl:
+ . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya)
+
- Date:
. Export date_get_immutable_ce so that it can be used by extensions. (Derick
Rethans)
-- Curl:
- . Implemented FR#69278 (HTTP2 support). (Masaki Kagaya)
-
- Enchant:
. Fixed bug #65406 (Enchant broker plugins are in the wrong place in windows
builds). (Anatol)
diff --git a/configure.in b/configure.in
index b56b85f12d..3d58d4ccb4 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=24
-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 2997684bf0..6a8e89e681 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 24
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.24-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "5.5.24RC1"
#define PHP_VERSION_ID 50524