Skip to content

Commit

Permalink
Prepare for PHP 8.1.0RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickallaert committed Aug 31, 2021
1 parent b0dd55b commit 5764414
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 8.1.0RC1
02 Sep 2021, PHP 8.1.0RC1

- Core:
. Fixed bug #81377 (unset() of $GLOBALS sub-key yields warning). (Nikita)
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 "4.1.0-dev"
#define ZEND_VERSION "4.1.0RC1"

#define ZEND_ENGINE_3

Expand Down
2 changes: 1 addition & 1 deletion Zend/zend_extensions.h
Expand Up @@ -44,7 +44,7 @@ You can use the following macro to check the extension API version for compatibi

/* The first number is the engine version and the rest is the date (YYYYMMDD).
* This way engine 2/3 API no. is always greater than engine 1 API no.. */
#define ZEND_EXTENSION_API_NO 420201009
#define ZEND_EXTENSION_API_NO 420210902

typedef struct _zend_extension_version_info {
int zend_extension_api_no;
Expand Down
2 changes: 1 addition & 1 deletion Zend/zend_modules.h
Expand Up @@ -31,7 +31,7 @@
#define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module
#define ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU zend_module

#define ZEND_MODULE_API_NO 20201009
#define ZEND_MODULE_API_NO 20210902
#ifdef ZTS
#define USING_ZTS 1
#else
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -17,7 +17,7 @@ dnl Basic autoconf initialization, generation of config.nice.
dnl ----------------------------------------------------------------------------

AC_PREREQ([2.68])
AC_INIT([PHP],[8.1.0-dev],[https://bugs.php.net],[php],[https://www.php.net])
AC_INIT([PHP],[8.1.0rc1],[https://bugs.php.net],[php],[https://www.php.net])
AC_CONFIG_SRCDIR([main/php_version.h])
AC_CONFIG_AUX_DIR([build])
AC_PRESERVE_HELP_ORDER
Expand Down
2 changes: 1 addition & 1 deletion main/php.h
Expand Up @@ -22,7 +22,7 @@
#include <dmalloc.h>
#endif

#define PHP_API_VERSION 20201009
#define PHP_API_VERSION 20210902
#define PHP_HAVE_STREAMS
#define YYDEBUG 0
#define PHP_DEFAULT_CHARSET "UTF-8"
Expand Down
4 changes: 2 additions & 2 deletions main/php_version.h
Expand Up @@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 8
#define PHP_MINOR_VERSION 1
#define PHP_RELEASE_VERSION 0
#define PHP_EXTRA_VERSION "-dev"
#define PHP_VERSION "8.1.0-dev"
#define PHP_EXTRA_VERSION "rc1"
#define PHP_VERSION "8.1.0rc1"
#define PHP_VERSION_ID 80100

0 comments on commit 5764414

Please sign in to comment.