diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0c470e05..61c754a6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,18 @@
+
+## [2.11.3](https://github.com/algolia/algoliasearch-wordpress/compare/2.11.2...2.11.3) (2019-01-21)
+
+
+### Bug Fixes
+
+* post attachment behaviour ([#767](https://github.com/algolia/algoliasearch-wordpress/issues/767)) ([97e1d3e](https://github.com/algolia/algoliasearch-wordpress/commit/97e1d3e))
+
+
+### Features
+
+* add filter to avoid requiring Algolia client ([b5c614f](https://github.com/algolia/algoliasearch-wordpress/commit/b5c614f))
+
+
+
## [2.11.2](https://github.com/algolia/algoliasearch-wordpress/compare/2.11.1...2.11.2) (2018-07-02)
diff --git a/README.md b/README.md
index 3440fcc1..892c5f21 100644
--- a/README.md
+++ b/README.md
@@ -2,9 +2,9 @@
**Contributors:** [algolia](https://profiles.wordpress.org/algolia), [rayrutjes](https://profiles.wordpress.org/rayrutjes)
**Tags:** Search, Algolia, Autocomplete, instant-search, relevant search, search highlight, faceted search, find-as-you-type search, suggest, search by category, ajax search, better search, custom search
**Requires at least:** 4.4
-**Tested up to:** 4.9
+**Tested up to:** 5.0
**Requires PHP:** 5.3
-**Stable tag:** 2.11.2
+**Stable tag:** 2.11.3
**License:** MIT License, GNU General Public License v2.0
Search by Algolia is the smartest way to improve search on your site. Autocomplete is included, along with full control over look, feel and relevance.
@@ -16,11 +16,11 @@ The plugin provides relevant search results in milliseconds, ensuring that your
### About pricing ###
This plugin relies on the [Algolia service](https://www.algolia.com/) which requires you to [create an account here](https://www.algolia.com/users/sign_up).
-Algolia offers its Search as a Service provider on a incremental payment program, including a free Community Plan which includes 10,000 records & 100,000 indexing operations per month.
-Beyond that, plans start at $35/month.
+Algolia offers its Search as a Service provider on a incremental payment program, including a free Community Plan which includes 10,000 records & 50,000 operations per month.
+Beyond that, plans start at $29/month.
Note that there isn’t a direct correlation between the number of posts in WordPress and the number of records in Algolia.
-Also note that we only offer support to paying plans.
+Also note that we only offer support starting from the PRO plan.
On average, you can expect to have about 10 times more records than you have posts, though this is not a golden rule and you could end up with more records.
### Getting started guide ###
@@ -74,7 +74,7 @@ It will also give you guidance about where to ask support if your question is no
* PHP version 5.3 or greater (PHP 5.6 or greater is recommended)
* MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)
* Some payment gateways require fsockopen support (for IPN access)
-* Requires WordPress 3.7+ (WordPress 4.4+ is recommended because we will drop support below it in upcoming releases)
+* Requires WordPress 4.4+
Visit the [Search by Algolia server requirements documentation](https://community.algolia.com/wordpress/installation.html) for a detailed list of server requirements.
diff --git a/README.txt b/README.txt
index f2ae106a..37a19ba4 100644
--- a/README.txt
+++ b/README.txt
@@ -4,7 +4,7 @@ Tags: Search, Algolia, Autocomplete, instant-search, relevant search, search hig
Requires at least: 4.4
Tested up to: 5.0
Requires PHP: 5.3
-Stable tag: 2.11.2
+Stable tag: 2.11.3
License: MIT License, GNU General Public License v2.0
Search by Algolia is the smartest way to improve search on your site. Autocomplete is included, along with full control over look, feel and relevance.
diff --git a/algolia.php b/algolia.php
index 485f52ca..7537b346 100644
--- a/algolia.php
+++ b/algolia.php
@@ -5,7 +5,7 @@
* Plugin Name: Search by Algolia – Instant & Relevant results
* Plugin URI: https://community.algolia.com/wordpress
* Description: Search by Algolia is the smartest way to improve search on your site. Autocomplete is included, along with full control over look, feel and relevance.
- * Version: 2.11.2
+ * Version: 2.11.3
* Author: Algolia
* Author URI: https://www.algolia.com/
* License: MIT License, GNU General Public License v2.0
@@ -32,7 +32,7 @@
}
// The Algolia Search plugin version.
-define( 'ALGOLIA_VERSION', '2.11.2' );
+define( 'ALGOLIA_VERSION', '2.11.3' );
define( 'ALGOLIA_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
if ( ! defined( 'ALGOLIA_PATH' ) ) {
diff --git a/bin/publish.sh b/bin/publish.sh
index 303254ca..e4d0a860 100755
--- a/bin/publish.sh
+++ b/bin/publish.sh
@@ -5,7 +5,7 @@ set -eu
readonly PACKAGE_VERSION=$(< package.json grep version \
| head -1 \
| awk -F: '{ print $2 }' \
- | sed 's/[",]//g' \
+ | gsed 's/[",]//g' \
| tr -d '[:space:]')
git tag "$PACKAGE_VERSION"
diff --git a/bin/release-branch.sh b/bin/release-branch.sh
index 51dfbbf8..f0f7cca4 100755
--- a/bin/release-branch.sh
+++ b/bin/release-branch.sh
@@ -32,15 +32,15 @@ fi
readonly PACKAGE_VERSION=$(< package.json grep version \
| head -1 \
| awk -F: '{ print $2 }' \
- | sed 's/[",]//g' \
+ | gsed 's/[",]//g' \
| tr -d '[:space:]')
# Here we need to update versions in files
readonly SEMVER_REGEX=[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*
-sed -i "s/\(Version: \)$SEMVER_REGEX/\1$PACKAGE_VERSION/g" ./algolia.php
-sed -i "s/\('ALGOLIA_VERSION', '\)$SEMVER_REGEX/\1$PACKAGE_VERSION/g" ./algolia.php
-sed -i "s/\(Stable tag: \)$SEMVER_REGEX/\1$PACKAGE_VERSION/" ./readme.txt
-sed -i "s/\(version: '\)$SEMVER_REGEX/\1$PACKAGE_VERSION/" ./docs/index.js
+gsed -i "s/\(Version: \)$SEMVER_REGEX/\1$PACKAGE_VERSION/g" ./algolia.php
+gsed -i "s/\('ALGOLIA_VERSION', '\)$SEMVER_REGEX/\1$PACKAGE_VERSION/g" ./algolia.php
+gsed -i "s/\(Stable tag: \)$SEMVER_REGEX/\1$PACKAGE_VERSION/" ./readme.txt
+gsed -i "s/\(version: '\)$SEMVER_REGEX/\1$PACKAGE_VERSION/" ./docs/index.js
if ! grunt; then
echo "Failed to build dist files, aborting..."
diff --git a/docs/index.js b/docs/index.js
index 0da31ed7..1a2fc614 100644
--- a/docs/index.js
+++ b/docs/index.js
@@ -28,7 +28,7 @@ var siteBuild = Metalsmith(__dirname)
.metadata({
title: 'Algolia Search Plugin for WordPress',
url: 'https://github.com/algolia/algoliasearch-wordpress',
- version: '2.11.2',
+ version: '2.11.3',
time: new Date().getTime(),
tweets:['666409672006606848','675635141713248256','684325213329305600','669552193419259904','672084577805012992','714625225359425536','669555344725696512','688027404741308417','783838738791227392','782584336323227648','787040561215582208','698839453469544448','687060441881796608','705467858961223680','665028633048821760','654785137272459265','661567388983279617','708574926962294784','707863195025858560'],
header: algoliaComponents.communityHeader(communityHeaderData)
diff --git a/languages/algolia.pot b/languages/algolia.pot
index 62dbd502..35a237ea 100644
--- a/languages/algolia.pot
+++ b/languages/algolia.pot
@@ -1,14 +1,14 @@
-# Copyright (C) 2018 Algolia
+# Copyright (C) 2019 Algolia
# This file is distributed under the MIT License, GNU General Public License v2.0.
msgid ""
msgstr ""
-"Project-Id-Version: Search by Algolia – Instant & Relevant results 2.11.2\n"
+"Project-Id-Version: Search by Algolia – Instant & Relevant results 2.11.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/algolia\n"
-"POT-Creation-Date: 2018-07-02 13:52:15+00:00\n"
+"POT-Creation-Date: 2019-01-21 10:21:48+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"Language: en\n"
diff --git a/package.json b/package.json
index c3352f33..fd9c2b9c 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "version": "2.11.2",
+ "version": "2.11.3",
"scripts": {
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"changelog:unreleased": "conventional-changelog --preset angular --output-unreleased"