Skip to content
This repository was archived by the owner on May 9, 2019. It is now read-only.

Commit 07eb05b

Browse files
authored
Merge pull request #240 from algolia/bump-0.6.0
Bump version to 0.6.0
2 parents 10110cc + d8b3f3e commit 07eb05b

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.6.0
2+
- Index all taxonomies even custom ones
3+
- Made autocomplete & search page easily customizable by copy pasting a folder in the active theme
4+
- Fix an issue where you would get 500 errors once if API credentials were not yet set
5+
- Push all image sizes along with there urls to ease frontend template customization
6+
- Fix issues were the queue would stop being processed because we attempted to load an item that was no longer existing
7+
- Fix deletion syncing with Algolia
8+
- Lower the autocomplete dropdown min width to 200px so that it fits on mobile display
9+
- A lot of Docs improvements
10+
- Allow to use dev version of the js scripts by using constant 'SCRIPT_DEBUG'
11+
- Allow to avoid automatic queue processing by using 'ALGOLIA_AUTO_PROCESS_QUEUE' constant
12+
- Fix facet counts on search results page
13+
- Add support for replicas
14+
115
# 0.5.0
216
- Fix a bug where autocomplete dropdown would not have the correct width after window resizing
317
- Exclude post content contained inside `<script>` tags by default

algolia.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin Name: Algolia Search
66
* Plugin URI: https://community.algolia.com/wordpress
77
* Description: Algolia Search plugin for WordPress is a drop in replacement for WordPress search. It provides a find-as-you-type search results page and adds an autocomplete dropdown menu to your search bars.
8-
* Version: 0.5.0
8+
* Version: 0.6.0
99
* Author: Algolia
1010
* Author URI: https://www.algolia.com/
1111
* License: MIT License, GNU General Public License v2.0
@@ -31,7 +31,7 @@
3131
}
3232

3333
// The Algolia Search plugin version.
34-
define( 'ALGOLIA_VERSION', '0.5.0' );
34+
define( 'ALGOLIA_VERSION', '0.6.0' );
3535

3636
if ( ! defined( 'ALGOLIA_PATH' ) ) {
3737
define( 'ALGOLIA_PATH', plugin_dir_path( __FILE__ ) );

docs/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var siteBuild = Metalsmith(__dirname)
2121
.metadata({
2222
title: 'Algolia Search Plugin for WordPress',
2323
url: 'https://github.com/algolia/algoliasearch-wordpress',
24-
version: '0.5.0',
24+
version: '0.6.0',
2525
time: new Date().getTime(),
2626
})
2727

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch-wordpress",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Algolia Search plugin for WordPress is a drop in replacement for WordPress search. It also provides an optional \"as you type\" auto-complete experience.",
55
"main": "index.js",
66
"directories": {

0 commit comments

Comments
 (0)