summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2017-06-06 13:02:29 +0000
committerSara Golemon <pollita@php.net>2017-06-06 13:02:29 +0000
commite3a2fc1fe7fb370f7fdf1f078971f6c405b89f14 (patch)
treece2a5bb93ec54156acb76b2941d104922aff9e24
parent5f4f0c73bda203254522beae5d4384f6a829db14 (diff)
downloadphp-git-php-7.2.0alpha1.tar.gz
Update versions for PHP 7.2.0alpha1php-7.2.0alpha1
-rw-r--r--configure.ac2
-rw-r--r--main/php_version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 9937a4c15d..b378ca6030 100644
--- a/configure.ac
+++ b/configure.ac
@@ -106,7 +106,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=2
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 62cdcfceda..4f2075783f 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 2
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.2.0-dev"
+#define PHP_EXTRA_VERSION "alpha1"
+#define PHP_VERSION "7.2.0alpha1"
#define PHP_VERSION_ID 70200