Skip to content

Commit a271379

Browse files
authored
Merge pull request #156 from alleyinteractive/release/0.4.1
Version bump to 0.4.1
2 parents eccdcb4 + 8b5731e commit a271379

File tree

5 files changed

+38
-30
lines changed

5 files changed

+38
-30
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ add_filter(
6464
Changelog
6565
---------
6666

67+
### 0.4.1
68+
69+
* Updates grunt packages to latest versions
70+
* Documents deprecated/removed filters in 0.4.0
71+
* Improves handling of indexing batch with no indexable posts
72+
* Adds filter `sp_post_index_path` for single post paths
73+
* Adds filter `sp_bulk_index_path` for bulk index paths
74+
6775
### 0.4
6876

6977
* **CRITICAL BREAKING CHANGE:** Post meta indexing is now opt-in. See README for more information.

README.txt

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
=== SearchPress ===
2-
Contributors: mboynes, alleyinteractive
3-
Tags: search, elasticsearch, faceted search, performance
4-
Requires at least: 4.8.0
5-
Tested up to: 5.4
6-
Stable tag: 0.4
7-
License: GPLv2 or later
8-
License URI: http://www.gnu.org/licenses/gpl-2.0.html
9-
10-
Elasticsearch plugin for WordPress.
11-
12-
== Description ==
13-
14-
This plugin indexes your content in Elasticsearch, replaces WordPress' core search
15-
with Elasticsearch, and provides an API for custom queries against the Elasticsearch
16-
server.
17-
18-
== Prerequisites ==
19-
20-
* PHP 5.6+
21-
* Elasticsearch
22-
23-
== Installation ==
24-
25-
1. Upload to the `/wp-content/plugins/` directory
26-
1. Activate the plugin through the 'Plugins' menu in WordPress
27-
1. You'll be prompted to add your elasticsearch endpoint and to index your posts.
1+
=== SearchPress ===
2+
Contributors: mboynes, alleyinteractive
3+
Tags: search, elasticsearch, faceted search, performance
4+
Requires at least: 4.8.0
5+
Tested up to: 5.4
6+
Stable tag: 0.4.1
7+
License: GPLv2 or later
8+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
9+
10+
Elasticsearch plugin for WordPress.
11+
12+
== Description ==
13+
14+
This plugin indexes your content in Elasticsearch, replaces WordPress' core search
15+
with Elasticsearch, and provides an API for custom queries against the Elasticsearch
16+
server.
17+
18+
== Prerequisites ==
19+
20+
* PHP 5.6+
21+
* Elasticsearch
22+
23+
== Installation ==
24+
25+
1. Upload to the `/wp-content/plugins/` directory
26+
1. Activate the plugin through the 'Plugins' menu in WordPress
27+
1. You'll be prompted to add your elasticsearch endpoint and to index your posts.

lib/globals.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
// Core plugin version.
9-
define( 'SP_VERSION', '0.4' );
9+
define( 'SP_VERSION', '0.4.1' );
1010

1111
// The map version. Represents the last time the mappings were changed.
1212
define( 'SP_MAP_VERSION', 2020040401 );

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "searchpress",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"main": "Gruntfile.js",
55
"author": "Matthew Boynes",
66
"devDependencies": {

searchpress.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: SearchPress
44
* Plugin URI: http://searchpress.org/
55
* Description: Elasticsearch for WordPress.
6-
* Version: 0.4
6+
* Version: 0.4.1
77
* Author: Matthew Boynes, Alley Interactive
88
* Author URI: http://www.alleyinteractive.com/
99
*

0 commit comments

Comments
 (0)