summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-12-04 13:01:42 +0100
committerAnatol Belski <ab@php.net>2018-12-04 13:01:42 +0100
commitbf574c2b67a1f786e36cf679f41b758b973a82c4 (patch)
treea69c5d01cc9e14cf408a239c7c8a5538f9474b69
parenta8f125fbca4588d94e5da63c5d21c8a8e15f44f4 (diff)
downloadphp-git-PHP-7.0.33.tar.gz
-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 69884bc1e9..7ba3bc05a5 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=33
-PHP_EXTRA_VERSION="-dev"
+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 4066c91b0f..00c63f3581 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 33
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.0.33-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.0.33"
#define PHP_VERSION_ID 70033