Skip to content

Commit

Permalink
Merge pull request #166 from WebDevStudios/hotfix/script-dependencies
Browse files Browse the repository at this point in the history
Hotfix/script dependencies
  • Loading branch information
richaber authored Jul 26, 2021
2 parents 94978af + 876db2a commit d3e6e4e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: Search, Algolia, Autocomplete, instant-search, relevant search, search hig
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.2
Stable tag: 2.0.0
Stable tag: 2.0.1
License: GNU General Public License v2.0, MIT License

Improve search on your site. Autocomplete is included, along with full control over look, feel and relevance.
Expand Down Expand Up @@ -106,6 +106,9 @@ WebDevStudios provides end-to-end WordPress opportunities from strategy and plan

Follow along with the changelog on [Github](https://github.com/WebDevStudios/wp-search-with-algolia/releases).

= 2.0.1 =
* Fix for users that enable intstantsearch but not autocomplete by adding algoliasearch client as direct dependency of both

= 2.0.0 =
* Breaking changes for users with customized autocomplete.php / instantsearch.php template in their theme.
* Update autocomplete.php and instantsearch.php templates for compatibility with new JS libs.
Expand Down
4 changes: 2 additions & 2 deletions algolia.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: WP Search with Algolia
* Plugin URI: https://github.com/WebDevStudios/wp-search-with-algolia
* Description: Integrate the powerful Algolia search service with WordPress
* Version: 2.0.0
* Version: 2.0.1
* Requires at least: 5.0
* Requires PHP: 7.2
* Author: WebDevStudios
Expand All @@ -26,7 +26,7 @@
}

// The Algolia Search plugin version.
define( 'ALGOLIA_VERSION', '2.0.0' );
define( 'ALGOLIA_VERSION', '2.0.1' );

// The minmum required PHP version.
define( 'ALGOLIA_MIN_PHP_VERSION', '7.2' );
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webdevstudios/wp-search-with-algolia",
"version": "2.0.0",
"version": "2.0.1",
"description": "Integrate the powerful Algolia search service with WordPress.",
"authors": [
{
Expand Down
2 changes: 2 additions & 0 deletions includes/class-algolia-scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public function register_scripts() {
'jquery',
'underscore',
'wp-util',
'algolia-search',
],
ALGOLIA_VERSION,
$in_footer
Expand All @@ -82,6 +83,7 @@ public function register_scripts() {
'jquery',
'underscore',
'wp-util',
'algolia-search',
],
ALGOLIA_VERSION,
$in_footer
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-search-with-algolia",
"version": "2.0.0",
"version": "2.0.1",
"description": "Integrate the powerful Algolia search service with WordPress.",
"author": "WebDevStudios",
"license": "GPL-3.0",
Expand Down

0 comments on commit d3e6e4e

Please sign in to comment.