Skip to content

Update re2c minimum versions in Windows checks and docs #19039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ slightly different steps. We'll call attention where the steps differ.
> Do *not* bump the API versions after RC1.

5. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using
the correct Bison and re2c versions, e.g., for PHP 7.4, Bison 3.0.0 and re2c
0.13.4 are required, as a minimum.
the correct Bison and re2c versions, e.g., for PHP 8.5, Bison 3.0.0 and re2c
1.0.3 are required, as a minimum.

For example:

Expand Down Expand Up @@ -555,8 +555,8 @@ slightly different steps. We'll call attention where the steps differ.
an example.

6. Compile and run `make test`, with and without ZTS (Zend Thread Safety), using
the correct Bison and re2c versions, e.g., for PHP 7.4, Bison 3.0.0 and re2c
0.13.4 are required, as a minimum.
the correct Bison and re2c versions, e.g., for PHP 8.5, Bison 3.0.0 and re2c
1.0.3 are required, as a minimum.

For example:

Expand Down
2 changes: 1 addition & 1 deletion win32/build/confutils.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var WINVER = "0x0602"; /* 8/2012 */
var MINBISON = "3.0.0";

// There's a minimum requirement for re2c..
var MINRE2C = "0.13.4";
var MINRE2C = "1.0.3";

/* Store the enabled extensions (summary + QA check) */
var extensions_enabled = new Array();
Expand Down