Skip to content

Commit 481520d

Browse files
committed
set versions for release
1 parent 7bf1f9d commit 481520d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

NEWS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3+
29 Aug 2019, PHP 7.1.32
4+
5+
- mbstring:
6+
. Fixed CVE-2019-13224 (don't allow different encodings for onig_new_deluxe) (stas)
7+
8+
- pcre:
9+
. Fixed bug #75457 (heap use-after-free in pcrelib) (cmb)
10+
311
01 Aug 2019, PHP 7.1.31
412

513
- SQLite:

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
119119

120120
PHP_MAJOR_VERSION=7
121121
PHP_MINOR_VERSION=1
122-
PHP_RELEASE_VERSION=31
122+
PHP_RELEASE_VERSION=32
123123
PHP_EXTRA_VERSION=""
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.in to change version number */
33
#define PHP_MAJOR_VERSION 7
44
#define PHP_MINOR_VERSION 1
5-
#define PHP_RELEASE_VERSION 31
5+
#define PHP_RELEASE_VERSION 32
66
#define PHP_EXTRA_VERSION ""
7-
#define PHP_VERSION "7.1.31"
8-
#define PHP_VERSION_ID 70131
7+
#define PHP_VERSION "7.1.32"
8+
#define PHP_VERSION_ID 70132

0 commit comments

Comments
 (0)