summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Soria Parra <dsp@php.net>2012-11-12 17:25:17 +0100
committerDavid Soria Parra <dsp@php.net>2012-11-13 21:00:16 +0100
commita54db3838f780628d898369c4cfcf41f5bded97c (patch)
treed15d49f54df8e071925ecb67bde4cbb77a362c49
parentad4a87f798a43642ca7686df61a010a5b988684c (diff)
downloadphp-git-a54db3838f780628d898369c4cfcf41f5bded97c.tar.gz
PHP 5.5.0alpha1php-5.5.0alpha1
-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 41f2d2ad31..839c713c17 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 201?, PHP 5.5.0
+13 Nov 2012, PHP 5.5.0 Alpha 1
- General improvements:
. Added support for generators. (Nikita Popov)
diff --git a/configure.in b/configure.in
index 704801ec32..6506ef7658 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=0
-PHP_EXTRA_VERSION="-dev"
+PHP_EXTRA_VERSION="alpha1"
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 1995834e03..bc4a236dc0 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 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.0-dev"
+#define PHP_EXTRA_VERSION "alpha1"
+#define PHP_VERSION "5.5.0alpha1"
#define PHP_VERSION_ID 50500