Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#45 prep release 1.2.0 #46

Merged
merged 3 commits into from
Dec 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# A set of files you probably don't want in your WordPress.org distribution
.babelrc export-ignore
.circleci/config.yml export-ignore
.deployignore export-ignore
.distignore export-ignore
.DS_Store export-ignore
.editorconfig export-ignore
.eslintignore export-ignore
.eslintrc export-ignore
.git export-ignore
.gitattributes export-ignore
.github export-ignore
.gitignore export-ignore
.gitlab-ci.yml export-ignore
.phpcs.xml export-ignore
.phpcs.xml.dist export-ignore
.travis.yml export-ignore
*.sql export-ignore
*.tar.gz export-ignore
*.zip export-ignore
behat.yml export-ignore
bin export-ignore
bitbucket-pipelines.yml export-ignore
composer.json export-ignore
composer.lock export-ignore
dependencies.yml export-ignore
Gruntfile.js export-ignore
multisite.xml export-ignore
multisite.xml.dist export-ignore
node_modules export-ignore
package-lock.json export-ignore
package.json export-ignore
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
phpunit.xml export-ignore
phpunit.xml.dist export-ignore
README.md export-ignore
tests export-ignore
Thumbs.db export-ignore
webpack.config.js export-ignore
wp-cli.local.yml export-ignore
yarn.lock export-ignore
/assets export-ignore
/vendor export-ignore
17 changes: 16 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: Search, Algolia, Autocomplete, instant-search, relevant search, search hig
Requires at least: 5.0
Tested up to: 5.3
Requires PHP: 7.2
Stable tag: 1.1.0
Stable tag: 1.2.0
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 @@ -108,3 +108,18 @@ WebDevStudios provides end-to-end WordPress opportunities from strategy and plan
== Changelog ==

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

= 1.2.0 =
* Use filtered value of 'hitsPerPage' as 'posts_per_page' query param
* Fix broken SVG
* Add highlighting to backend search results - props @philipnewcomer

= 1.1.0 =
* Minimum PHP version requirement is now PHP 7.2
* Minimum WordPress version requirement is now WP 5.0
* Internationalization/localization improvements, textdomain matches plugin slug
* Addressed a potential WSOD if minimum PHP and WP version requirements were not met
* Tested on WP 5.3

= 1.0.0 =
* Initial release.
4 changes: 2 additions & 2 deletions algolia.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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: 1.1.0
* Version: 1.2.0
* Requires at least: 5.0
* Requires PHP: 7.2
* Author: WebDevStudios
Expand All @@ -24,7 +24,7 @@
}

// The Algolia Search plugin version.
define( 'ALGOLIA_VERSION', '1.1.0' );
define( 'ALGOLIA_VERSION', '1.2.0' );

// The minmum required PHP version.
define( 'ALGOLIA_MIN_PHP_VERSION', '7.2' );
Expand Down