summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-09-27 12:38:38 +0200
committerAnatol Belski <ab@php.net>2016-09-27 12:38:38 +0200
commitfcc232173eec049649645247312637b2093a7385 (patch)
tree48c6843d272073fab75589c0c574135e624297af
parent6887c4a06146252c156bcd270828774ed97b5b9f (diff)
downloadphp-git-fcc232173eec049649645247312637b2093a7385.tar.gz
set versionsphp-7.0.12RC1
-rw-r--r--NEWS2
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index aa17db7c91..dfdd29ee54 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016 PHP 7.0.12
+29 Sep 2016 PHP 7.0.12RC1
- Core:
. Fixed bug #73067 (__debugInfo crashes when throwing an exception).
diff --git a/configure.in b/configure.in
index 7f60f4ce51..aa2c3f0e7d 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=12
-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 2b2c7ab4f6..7b70248714 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 12
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.12-dev"
+#define PHP_EXTRA_VERSION "RC1"
+#define PHP_VERSION "7.0.12RC1"
#define PHP_VERSION_ID 70012