Skip to content

Commit eb3c99c

Browse files
committed
Prepare for 7.3.25
1 parent 0d00eea commit eb3c99c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
12 Nov 2020, PHP 7.3.25RC1
3+
26 Nov 2020, PHP 7.3.25
44

55
- Core:
66
. Fixed bug #80280 (ADD_EXTENSION_DEP() fails for ext/standard and ext/date).

Zend/zend.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef ZEND_H
2121
#define ZEND_H
2222

23-
#define ZEND_VERSION "3.3.25RC1"
23+
#define ZEND_VERSION "3.3.25"
2424

2525
#define ZEND_ENGINE_3
2626

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
108108
PHP_MAJOR_VERSION=7
109109
PHP_MINOR_VERSION=3
110110
PHP_RELEASE_VERSION=25
111-
PHP_EXTRA_VERSION="RC1"
111+
PHP_EXTRA_VERSION=""
112112
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
113113
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
114114

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 7
44
#define PHP_MINOR_VERSION 3
55
#define PHP_RELEASE_VERSION 25
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "7.3.25RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "7.3.25"
88
#define PHP_VERSION_ID 70325

0 commit comments

Comments
 (0)