summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFerenc Kovacs <tyra3l@gmail.com>2017-01-19 01:17:47 +0100
committerFerenc Kovacs <tyra3l@gmail.com>2017-01-19 01:17:47 +0100
commit195427c55481d9913ac9dd3fbcedf2f7c637e6de (patch)
tree1f6a3c833a9d35a081e3d77503fb91952c99a270
parent2ba4d0a04201bb6217f90036c9abac6052f01aba (diff)
downloadphp-git-PHP-5.6.30.tar.gz
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 6 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 8fff05850c..1ee950bfec 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,14 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-05 Jan 2017, PHP 5.6.30RC1
+19 Jan 2017, PHP 5.6.30
- EXIF:
. Fixed bug #73737 (FPE when parsing a tag format). (Stas)
- GD:
. Fixed bug #73549 (Use after free when stream is passed to imagepng). (cmb)
+ . Fixed bug #73868 (DOS vulnerability in gdImageCreateFromGd2Ctx()). (cmb)
+ . Fixed bug #73869 (Signed Integer Overflow gd_io.c). (cmb)
- Intl:
. Fixed bug #68447 (grapheme_extract take an extra trailing character).
diff --git a/configure.in b/configure.in
index cefd8c4956..f859e798f0 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=6
PHP_RELEASE_VERSION=30
-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 1c180c3169..fba7b0d4a8 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 6
#define PHP_RELEASE_VERSION 30
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.6.30RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.6.30"
#define PHP_VERSION_ID 50630