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

Commit

Permalink
Merge pull request #133 from algolia/bump-0.2.6
Browse files Browse the repository at this point in the history
Bump version to 0.2.6
  • Loading branch information
rayrutjes authored Aug 1, 2016
2 parents b9300c1 + ae75495 commit 035fc7c
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.2.6
- Make sure we detect custom post types before loading indices
- Log errors even when logging is turned off
- Add some contextual help in the admin UI

# 0.2.5
- Mainly wording adjustments

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "algolia/algoliasearch-wordpress-plugin",
"name": "algolia/algoliasearch-wordpress",
"description": "Algolia Search for Wordpress",
"config": {
"vendor-dir": "wordpress/wp-content/plugins/algolia/vendor"
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var siteBuild = Metalsmith(__dirname)
.metadata({
title: 'Algolia Search Plugin for WordPress',
url: 'https://github.com/algolia/algoliasearch-wordpress-plugin',
version: '0.2.5',
version: '0.2.6',
time: new Date().getTime(),
})

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": "algoliasearch-wordpress-plugin",
"version": "0.2.5",
"version": "0.2.6",
"description": "Requirements: - docker - docker-compose",
"main": "index.js",
"directories": {
Expand Down
36 changes: 36 additions & 0 deletions wordpress/wp-content/plugins/algolia/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,39 @@ Fully extensible by the means of WordPress filters and hooks for building your c
1. Activate the Algolia Search plugin through the 'Plugins' screen in WordPress
1. If you have no Algolia account, go get one for free here: [Algolia sign-up page](https://www.algolia.com/users/sign_up)
1. From here you can follow the on-boarding tour to get your search up and running

== Changelog ==

= 0.2.6 =
* Make sure we detect custom post types before loading indices
* Log errors even when logging is turned off
* Add some contextual help in the admin UI

= 0.2.5 =
* Mainly wording adjustments

= 0.2.4 =
* Add 'post_date_formatted' to post records in Algolia

= 0.2.3 =
* Only forward WordPress cookie entries in async calls, resolves most of the queue being stopped issues

= 0.2.2 =
* Fix header size overflow due to cookies that made the queue stop at every few task
* Add a notice on indexing screen if wp_remote_post is not usable
* Log failed credentials validation

= 0.2.1 =
* Allow indexing of custom post types
* Scope logging disabled notice to logs page
* Fix the queue status display on indexing page for simple tasks
* Display notices in admin for every unmet requirement (cURL, mbstring)

= 0.2.0 =
* Implement retry strategy for tasks processing
* Allow to (en|dis)able logging from admin Logs page

= 0.0.1 =
* Initial Stable Release


4 changes: 2 additions & 2 deletions wordpress/wp-content/plugins/algolia/algolia.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Plugin Name: Algolia Search
* Plugin URI: https://community.algolia.com/wordpress
* 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.
* Version: 0.2.5
* Version: 0.2.6
* Author: Algolia
* Author URI: https://www.algolia.com/
* License: MIT
Expand All @@ -31,7 +31,7 @@
}

// The Algolia Search plugin version.
define( 'ALGOLIA_VERSION', '0.2.5' );
define( 'ALGOLIA_VERSION', '0.2.6' );

if ( ! defined( 'ALGOLIA_PATH' ) ) {
define( 'ALGOLIA_PATH', plugin_dir_path( __FILE__ ) );
Expand Down

0 comments on commit 035fc7c

Please sign in to comment.