Skip to content

Commit

Permalink
Prepare for PHP 7.3.7RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Jun 18, 2019
1 parent 1b63ca3 commit 770db7e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions NEWS
@@ -1,5 +1,11 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 Jun 2019, PHP 7.3.7RC2

- Opcache:
. Fixed bug #78106 (Path resolution fails if opcache disabled during request).
(Nikita)

13 Jun 2019, PHP 7.3.7RC1

- Core:
Expand Down
2 changes: 1 addition & 1 deletion Zend/zend.h
Expand Up @@ -20,7 +20,7 @@
#ifndef ZEND_H
#define ZEND_H

#define ZEND_VERSION "3.3.7RC1"
#define ZEND_VERSION "3.3.7RC2"

#define ZEND_ENGINE_3

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -108,7 +108,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=7
PHP_MINOR_VERSION=3
PHP_RELEASE_VERSION=7
PHP_EXTRA_VERSION="RC1"
PHP_EXTRA_VERSION="RC2"
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`

Expand Down
4 changes: 2 additions & 2 deletions main/php_version.h
Expand Up @@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 7
#define PHP_MINOR_VERSION 3
#define PHP_RELEASE_VERSION 7
#define PHP_EXTRA_VERSION "RC1"
#define PHP_VERSION "7.3.7RC1"
#define PHP_EXTRA_VERSION "RC2"
#define PHP_VERSION "7.3.7RC2"
#define PHP_VERSION_ID 70307

0 comments on commit 770db7e

Please sign in to comment.