diff options
author | Christoph M. Becker <cmb@php.net> | 2019-03-05 13:48:56 +0000 |
---|---|---|
committer | Christoph M. Becker <cmb@php.net> | 2019-03-05 13:48:56 +0000 |
commit | 9ebd7f36b1bcbb2b425ab8e903846f3339d6d566 (patch) | |
tree | 5cad185fa2836fbb4da73daba1d0a394d5bada2b | |
parent | 3e7c52454fcf038f91f948d609741c915b6a0161 (diff) | |
download | php-git-PHP-7.3.3.tar.gz |
-rw-r--r-- | Zend/zend.h | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | main/php_version.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index 32ed527376..b11f27a2ea 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -20,7 +20,7 @@ #ifndef ZEND_H #define ZEND_H -#define ZEND_VERSION "3.3.3RC1" +#define ZEND_VERSION "3.3.3" #define ZEND_ENGINE_3 diff --git a/configure.ac b/configure.ac index fc811dc8f4..c431335841 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=3 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 4baf2d0133..7124aaa24d 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -3,6 +3,6 @@ #define PHP_MAJOR_VERSION 7 #define PHP_MINOR_VERSION 3 #define PHP_RELEASE_VERSION 3 -#define PHP_EXTRA_VERSION "RC1" -#define PHP_VERSION "7.3.3RC1" +#define PHP_EXTRA_VERSION "" +#define PHP_VERSION "7.3.3" #define PHP_VERSION_ID 70303 |