summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2017-12-12 19:04:27 +0000
committerSara Golemon <pollita@php.net>2017-12-12 19:04:27 +0000
commit62cab1670c8b737295bd4c8b3c7c9957e9aee669 (patch)
tree12ac7c4ea46c40f64740562971aa3c84784c3a1a
parent4f2796a80475c7bfb9b431f5d225ae116b9b55cf (diff)
downloadphp-git-62cab1670c8b737295bd4c8b3c7c9957e9aee669.tar.gz
Update versions for PHP 7.2.1RC1php-7.2.1RC1
-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 f7800250fe..6ad32bd761 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=1
-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 6aa09d1905..ec05a83812 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 1
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.2.1-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.2.1RC1"
#define PHP_VERSION_ID 70201