summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-02-02 08:36:10 +0100
committerAnatol Belski <ab@php.net>2016-02-02 08:36:10 +0100
commita5f38da0578876cf608cf2f4de53ed76f6433fa2 (patch)
treec932fc6498f47709c9f10f91032204529f0c0624
parent315bf08de1b02dc907839c0bb7d00ff3674038ff (diff)
downloadphp-git-a5f38da0578876cf608cf2f4de53ed76f6433fa2.tar.gz
set release version
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index ce89cf44a3..a8b19b0e23 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=3
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
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 8059d77b4c..131851fc7a 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 3
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "7.0.3RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.0.3"
#define PHP_VERSION_ID 70003