Skip to content

Commit

Permalink
Prepare PHP 8.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
adoy committed Dec 20, 2023
1 parent e8aa514 commit f652d22
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 8.2.14
21 Dec 2023, PHP 8.2.14

- Core:
. Fixed oss-fuzz #54325 (Use-after-free of name in var-var with malicious
Expand All @@ -27,7 +27,7 @@ PHP NEWS

- FTP:
. Fixed bug GH-9348 (FTP & SSL session reuse). (nielsdos)

- Intl:
. Fixed bug GH-12635 (Test bug69398.phpt fails with ICU 74.1). (nielsdos)

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.2.14-dev"
#define ZEND_VERSION "4.2.14"

#define ZEND_ENGINE_3

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.2.14-dev],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
AC_INIT([PHP],[8.2.14],[https://github.com/php/php-src/issues],[php],[https://www.php.net])
AC_CONFIG_SRCDIR([main/php_version.h])
AC_CONFIG_AUX_DIR([build])
AC_PRESERVE_HELP_ORDER
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 2
#define PHP_RELEASE_VERSION 14
#define PHP_EXTRA_VERSION "-dev"
#define PHP_VERSION "8.2.14-dev"
#define PHP_EXTRA_VERSION ""
#define PHP_VERSION "8.2.14"
#define PHP_VERSION_ID 80214

4 comments on commit f652d22

@GrahamCampbell
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this commit never pushed to the PHP-8.2.14 branch?

@adoy
Copy link
Member Author

@adoy adoy commented on f652d22 Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GrahamCampbell why do you think it should be pushed on the branch ?

@GrahamCampbell
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because that is the usual process for doing a release, or at least it certainly used to be: e.g. 5dbc909.

@adoy
Copy link
Member Author

@adoy adoy commented on f652d22 Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should look at the php-8.2.14 tag and not the branch for the release version. The fact that it's a branch mean that it can evolve mean that it's a -dev.

Please sign in to comment.