diff --git a/README.txt b/README.txt index d7bb1e7..400592e 100755 --- a/README.txt +++ b/README.txt @@ -79,7 +79,7 @@ Yes just use `define('WPLS_DISABLE_STYLE', true)` and the CSS file will not load == Changelog == = 0.6 = -* added support to search custom post types +* added custom post type support = 0.5 = * added an option to specify a target div for the search results to be sent to diff --git a/wp-live-search.php b/wp-live-search.php index 9413437..8449de5 100755 --- a/wp-live-search.php +++ b/wp-live-search.php @@ -10,7 +10,7 @@ * Plugin Name: WP Live Search * Plugin URI: http://nickhaskins.com * Description: A super light-weight live search plugin that utilizes the WP REST API - * Version: 0.5 + * Version: 0.6 * GitHub Plugin URI: https://github.com/bearded-avenger/wp-live-search */ @@ -20,7 +20,7 @@ } // Set some constants -define('WP_LIVE_SEARCH_VERSION', '0.5'); +define('WP_LIVE_SEARCH_VERSION', '0.6'); define('WP_LIVE_SEARCH_DIR', plugin_dir_path( __FILE__ )); define('WP_LIVE_SEARCH_URL', plugins_url( '', __FILE__ ));