summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Collet <remi@php.net>2018-03-13 11:18:02 +0000
committerRemi Collet <remi@php.net>2018-03-13 11:18:02 +0000
commite8a323ce94dd2b954d41644f99e870bee4397d93 (patch)
tree0b2567d2f21c93c4e70e38714813d0ec6bdf63b2
parent2d37ed8ae067cee42c68f846d55a74bcf04cf72b (diff)
downloadphp-git-e8a323ce94dd2b954d41644f99e870bee4397d93.tar.gz
Update versions for PHP 7.2.4RC1php-7.2.4RC1
-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 3491dd4a36..d0657442e5 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=2
PHP_RELEASE_VERSION=4
-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 620e811f39..3c5ba2e6a7 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 4
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.2.4-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.2.4RC1"
#define PHP_VERSION_ID 70204