Commit 261d82a9a3 for wordpress.org

commit 261d82a9a3e88604e1d34ad9745b09accff7ef34
Author: desrosj <desrosj@git.wordpress.org>
Date:   Tue Sep 16 00:26:24 2025 +0000

    Build/Test Tools: Improve certificate-related build scripts.

    Because an exact version is pinned for `composer/ca-bundle`, the `composer update` command cannot update the dependency to the latest version. The command also does not work for a single dependency due to the fact that Composer has been configured not to generate a `composer.lock` file.

    This updates the Grunt task to determine the new version using `composer outdated` before running `composer require composer/ca-bundle:NEW_VERSION --dev` to properly update the pinned version.

    This also updates the build process test workflow to confirm that the certificate-related files under version control in `src/wp-includes/certificates` are up to date.

    Props johnbillion.
    Fixes #63939.
    Built from https://develop.svn.wordpress.org/trunk@60765


    git-svn-id: http://core.svn.wordpress.org/trunk@60101 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/version.php b/wp-includes/version.php
index e84b8758d3..d0dccb7c24 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.9-alpha-60764';
+$wp_version = '6.9-alpha-60765';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.