diff --git a/README.txt b/README.txt index 78dd5e8..8e5c002 100644 --- a/README.txt +++ b/README.txt @@ -3,8 +3,8 @@ Contributors: matthewtyriley, qhoxie, afoucret, jasonstoltz, goodroot Donate link: Tags: search, better search, custom search, relevant search, search by category, autocomplete, suggest, typeahead Requires at least: 3.3 -Tested up to: 5.5.1 -Stable tag: 2.0.4 +Tested up to: 5.8.1 +Stable tag: 2.0.5 License: Apache 2.0 License URI: https://github.com/swiftype/swiftype-wordpress/blob/master/LICENSE @@ -66,6 +66,10 @@ Your posts may have fallen out of sync. Click 'Synchronize' from within the plug == Changelog == += 2.0.5 = +* Do not index posts with type attachment anymore by default +* Added a new filter to allow to customize indexed post types swiftype_allowed_post_types + = 2.0.4 = * Fix composer package type * Fix error reporting during config and synchronization diff --git a/swiftype.php b/swiftype.php index b51059f..dee7f0c 100644 --- a/swiftype.php +++ b/swiftype.php @@ -5,11 +5,11 @@ Plugin URI: http://swiftype.com Description: The Swiftype Search plugin replaces the standard WordPress search with a better search engine that is fully customizable via the Swiftype dashboard. The Swiftype dashboard lets you customize the results for any search keyword via a drag-and-drop interface. Author: Swiftype, Inc. -Version: 2.0.4 +Version: 2.0.5 Author URI: http://swiftype.com */ -define('SWIFTYPE_VERSION', '2.0.4'); +define('SWIFTYPE_VERSION', '2.0.5'); require_once __DIR__ . '/vendor/autoload.php';