Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
chore(release): v2.11.3 (algolia#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrutjes authored Jan 21, 2019
1 parent 0a98ab3 commit 47b0549
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 21 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
<a name="2.11.3"></a>
## [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))



<a name="2.11.2"></a>
## [2.11.2](https://github.com/algolia/algoliasearch-wordpress/compare/2.11.1...2.11.2) (2018-07-02)

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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 ###
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions algolia.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion bin/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions bin/release-branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
2 changes: 1 addition & 1 deletion docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions languages/algolia.pot
Original file line number Diff line number Diff line change
@@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: en\n"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 47b0549

Please sign in to comment.