Commit 961a67cb88 for wordpress.org

commit 961a67cb886460f1c74685539f2486b623250b55
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date:   Wed Nov 30 18:32:13 2022 +0000

    Coding Standards: Fix a non-snake_case function name in `WP_Block` tests.

    As the filter is only intended for a single test, it can be converted to a closure instead of being declared as a function in the global namespace. The `remove_filter()` part is redundant, as `WP_UnitTestCase_Base` saves the state of filter-related globals at `set_up()` and restores them on `tear_down()`.

    Follow-up to [54175].

    Props jrf, SergeyBiryukov.
    See #56791.
    Built from https://develop.svn.wordpress.org/trunk@54917


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

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 00bf940fb5..5217737430 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '6.2-alpha-54916';
+$wp_version = '6.2-alpha-54917';

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