summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStas Malyshev <smalyshev@gmail.com>2018-06-06 06:12:15 +0000
committerStas Malyshev <smalyshev@gmail.com>2018-06-06 06:12:15 +0000
commit600cb4b46755a9170eaa32606528a6908bc98975 (patch)
tree817fe8bbee47919fdb5c73a5d5101f60e0370049
parent18bc3afdcbd515dd43c8c207a2d3e56b0cd07220 (diff)
downloadphp-git-600cb4b46755a9170eaa32606528a6908bc98975.tar.gz
Update versions for PHP 7.3.0alpha1php-7.3.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 e18e1de2ef..57fb945a33 100644
--- a/configure.ac
+++ b/configure.ac
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=3
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 e81c515249..3bcad1159e 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 0
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.3.0-dev"
+#define PHP_EXTRA_VERSION "alpha1"
+#define PHP_VERSION "7.3.0alpha1"
#define PHP_VERSION_ID 70300