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

Commit 035fc7c

Browse files
authored
Merge pull request #133 from algolia/bump-0.2.6
Bump version to 0.2.6
2 parents b9300c1 + ae75495 commit 035fc7c

6 files changed

Lines changed: 46 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.2.6
2+
- Make sure we detect custom post types before loading indices
3+
- Log errors even when logging is turned off
4+
- Add some contextual help in the admin UI
5+
16
# 0.2.5
27
- Mainly wording adjustments
38

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "algolia/algoliasearch-wordpress-plugin",
2+
"name": "algolia/algoliasearch-wordpress",
33
"description": "Algolia Search for Wordpress",
44
"config": {
55
"vendor-dir": "wordpress/wp-content/plugins/algolia/vendor"

docs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var siteBuild = Metalsmith(__dirname)
2222
.metadata({
2323
title: 'Algolia Search Plugin for WordPress',
2424
url: 'https://github.com/algolia/algoliasearch-wordpress-plugin',
25-
version: '0.2.5',
25+
version: '0.2.6',
2626
time: new Date().getTime(),
2727
})
2828

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algoliasearch-wordpress-plugin",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "Requirements: - docker - docker-compose",
55
"main": "index.js",
66
"directories": {

wordpress/wp-content/plugins/algolia/README.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,39 @@ Fully extensible by the means of WordPress filters and hooks for building your c
2929
1. Activate the Algolia Search plugin through the 'Plugins' screen in WordPress
3030
1. If you have no Algolia account, go get one for free here: [Algolia sign-up page](https://www.algolia.com/users/sign_up)
3131
1. From here you can follow the on-boarding tour to get your search up and running
32+
33+
== Changelog ==
34+
35+
= 0.2.6 =
36+
* Make sure we detect custom post types before loading indices
37+
* Log errors even when logging is turned off
38+
* Add some contextual help in the admin UI
39+
40+
= 0.2.5 =
41+
* Mainly wording adjustments
42+
43+
= 0.2.4 =
44+
* Add 'post_date_formatted' to post records in Algolia
45+
46+
= 0.2.3 =
47+
* Only forward WordPress cookie entries in async calls, resolves most of the queue being stopped issues
48+
49+
= 0.2.2 =
50+
* Fix header size overflow due to cookies that made the queue stop at every few task
51+
* Add a notice on indexing screen if wp_remote_post is not usable
52+
* Log failed credentials validation
53+
54+
= 0.2.1 =
55+
* Allow indexing of custom post types
56+
* Scope logging disabled notice to logs page
57+
* Fix the queue status display on indexing page for simple tasks
58+
* Display notices in admin for every unmet requirement (cURL, mbstring)
59+
60+
= 0.2.0 =
61+
* Implement retry strategy for tasks processing
62+
* Allow to (en|dis)able logging from admin Logs page
63+
64+
= 0.0.1 =
65+
* Initial Stable Release
66+
67+

wordpress/wp-content/plugins/algolia/algolia.php

Lines changed: 2 additions & 2 deletions
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 also provides an optional "as you type" auto-complete experience.
8-
* Version: 0.2.5
8+
* Version: 0.2.6
99
* Author: Algolia
1010
* Author URI: https://www.algolia.com/
1111
* License: MIT
@@ -31,7 +31,7 @@
3131
}
3232

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

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

0 commit comments

Comments
 (0)