summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-06-09 14:24:39 +0200
committerFerenc Kovacs <tyrael@php.net>2015-06-09 14:24:39 +0200
commit8a884d628b5c23c4b33c96c723331fda9e17d2bc (patch)
tree82a131f03d5e703cd1e00363c506c5efb3a7c66e
parent2d962af4c0c3972766a64887a370dda2126ac770 (diff)
downloadphp-git-8a884d628b5c23c4b33c96c723331fda9e17d2bc.tar.gz
7.0.0alpha1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 3 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 234dde88f6..800351ba4a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,5 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-25 Jun 2015, PHP 7.0.0 Alpha 2
-
11 Jun 2015, PHP 7.0.0 Alpha 1
- Core:
diff --git a/configure.in b/configure.in
index b70f024252..13908a122e 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=0
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 d48ab24141..f0339c28ae 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 0
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.0-dev"
+#define PHP_EXTRA_VERSION "alpha1"
+#define PHP_VERSION "7.0.0alpha1"
#define PHP_VERSION_ID 70000