diff --git a/README.md b/README.md index 1c36000..db8da6a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ We try to maintain backwards compatibility as much as possible. It's possible th SearchPress has a thorough battery of unit and integration tests to help add compatibility with each new Elasticsearch release, without compromising compatibility with older releases. - Prerequisites ------------- @@ -70,7 +69,6 @@ add_filter( ); ``` - Changelog --------- @@ -78,6 +76,8 @@ Changelog * Adds UI for authentication * **POSSIBLE BREAKING CHANGE**: Moves SearchPress integration to the `posts_pre_query`. +* Updated the "Tested up to" the latest current version (6.4). +* Removed the phpDoc `@author` field. ### 0.4.3 diff --git a/README.txt b/README.txt index 799a5bb..c87869d 100644 --- a/README.txt +++ b/README.txt @@ -3,7 +3,7 @@ Contributors: mboynes, alleyinteractive Tags: search, elasticsearch, faceted search, performance Requires at least: 5.9 Requires PHP: 7.4 -Tested up to: 6.0 +Tested up to: 6.4 Stable tag: 0.4.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html diff --git a/lib/class-sp-integration.php b/lib/class-sp-integration.php index e3bfd2c..80c8b4d 100644 --- a/lib/class-sp-integration.php +++ b/lib/class-sp-integration.php @@ -186,8 +186,6 @@ public function query_vars( $qv ) { * Set a faceted search as a search (and thus force the search template). A hook for the parse_query action. * * @param object $wp_query The current WP_Query. Passed by reference and modified if necessary. - * @return void - * @author Matthew Boynes */ public function force_search_template( &$wp_query ) { if ( ! $wp_query->is_main_query() ) { diff --git a/lib/class-sp-sync-manager.php b/lib/class-sp-sync-manager.php index b9efa06..bea6293 100644 --- a/lib/class-sp-sync-manager.php +++ b/lib/class-sp-sync-manager.php @@ -15,8 +15,6 @@ * @todo Trigger massive reindex (potentially) when indexed usermeta is edited * @todo Trigger massive reindex when term data is edited * @todo Changing permalinks should trigger full reindex? - * - * @author Matthew Boynes */ class SP_Sync_Manager extends SP_Singleton { @@ -316,7 +314,6 @@ function SP_Sync_Manager() { // phpcs:ignore WordPress.NamingConventions.ValidFu return SP_Sync_Manager::instance(); } - /** * SP_Sync_Manager only gets instantiated when necessary, so we register these * hooks outside of the class. diff --git a/lib/class-sp-sync-meta.php b/lib/class-sp-sync-meta.php index 31e052d..299a58b 100644 --- a/lib/class-sp-sync-meta.php +++ b/lib/class-sp-sync-meta.php @@ -9,8 +9,6 @@ * Simple class for working with the meta information associated with ES Syncing. * Many of the methods are disabled if we're in the WP-CLI environment, but this * class is still used to track the meta data (for consistency) - * - * @author Matthew Boynes */ class SP_Sync_Meta extends SP_Singleton { diff --git a/searchpress.php b/searchpress.php index 97c3f63..055f5e1 100644 --- a/searchpress.php +++ b/searchpress.php @@ -1,11 +1,11 @@