summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-05-01 07:16:54 +0200
committerJoe Watkins <krakjoe@php.net>2019-05-01 07:16:54 +0200
commit1888e8141b865aab006feebbb7be559fc0fab811 (patch)
tree779b4c6a5917660cfd72eaa8dba3d0b50651feab
parentf80ad18afae2230c2c1802c7d829100af646874e (diff)
downloadphp-git-PHP-7.1.29.tar.gz
set versions for releasephp-7.1.29PHP-7.1.29
-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 70ad9a7a6f..b35b243c25 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2019, PHP 7.1.29
+02 May 2019, PHP 7.1.29
- EXIF
. Fixed bug #77950 (Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG).
diff --git a/configure.in b/configure.in
index 9744721cf4..de852eb0bd 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=1
PHP_RELEASE_VERSION=29
-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 4883bf1c9e..c1669f54c6 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 29
-#define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "7.1.29-dev"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "7.1.29"
#define PHP_VERSION_ID 70129