Skip to content

Commit

Permalink
#101 Set version number to 1.5.0 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
richaber committed Oct 7, 2020
1 parent 58a6206 commit cee0d02
Showing 8 changed files with 23 additions and 20 deletions.
7 changes: 5 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
@@ -109,8 +109,11 @@ WebDevStudios provides end-to-end WordPress opportunities from strategy and plan

Follow along with the changelog on [Github](https://github.com/WebDevStudios/wp-search-with-algolia/releases).

= 1.5.0-dev =
* Hopefully resolving Pinterest scraper issue
= 1.5.0 =
* Fix an issue where Pinterest follows a link to the Algolia domain to source text and/or images
* Move Algolia scripts to footer by default
* Changes algolia_load_scripts_in_footer filter default argument to "true"
* Move autocomplete.php template output to footer by default

= 1.4.0 =
* Update Algolia PHP Search Client version 2.7.0.
4 changes: 2 additions & 2 deletions algolia.php
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
* Plugin Name: WP Search with Algolia
* Plugin URI: https://github.com/WebDevStudios/wp-search-with-algolia
* Description: Integrate the powerful Algolia search service with WordPress
* Version: 1.5.0-dev
* Version: 1.5.0
* Requires at least: 5.0
* Requires PHP: 7.2
* Author: WebDevStudios
@@ -26,7 +26,7 @@
}

// The Algolia Search plugin version.
define( 'ALGOLIA_VERSION', '1.5.0-dev' );
define( 'ALGOLIA_VERSION', '1.5.0' );

// The minmum required PHP version.
define( 'ALGOLIA_MIN_PHP_VERSION', '7.2' );
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webdevstudios/wp-search-with-algolia",
"version": "1.5.0-dev",
"version": "1.5.0",
"description": "Integrate the powerful Algolia search service with WordPress.",
"authors": [
{
8 changes: 4 additions & 4 deletions includes/class-algolia-plugin.php
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ class Algolia_Plugin {
* Instance of Algolia_Styles.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @var Algolia_Styles
*/
@@ -91,7 +91,7 @@ class Algolia_Plugin {
* Instance of Algolia_Scripts.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @var Algolia_Scripts
*/
@@ -430,7 +430,7 @@ public function get_template_loader() {
* Get the Algolia_Styles.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @return Algolia_Styles
*/
@@ -442,7 +442,7 @@ public function get_styles() {
* Get the Algolia_Scripts.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @return Algolia_Scripts
*/
8 changes: 4 additions & 4 deletions includes/class-algolia-scripts.php
Original file line number Diff line number Diff line change
@@ -3,23 +3,23 @@
* Algolia_Scripts class file.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @package WebDevStudios\WPSWA
*/

/**
* Class Algolia_Scripts
*
* @since 1.5.0-dev
* @since 1.5.0
*/
class Algolia_Scripts {

/**
* Algolia_Scripts constructor.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*/
public function __construct() {
add_action( 'wp_enqueue_scripts', [ $this, 'register_scripts' ] );
@@ -29,7 +29,7 @@ public function __construct() {
* Register scripts.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*/
public function register_scripts() {

8 changes: 4 additions & 4 deletions includes/class-algolia-styles.php
Original file line number Diff line number Diff line change
@@ -3,23 +3,23 @@
* Algolia_Styles class file.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @package WebDevStudios\WPSWA
*/

/**
* Class Algolia_Styles
*
* @since 1.5.0-dev
* @since 1.5.0
*/
class Algolia_Styles {

/**
* Algolia_Styles constructor.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*/
public function __construct() {
add_action( 'wp_enqueue_scripts', [ $this, 'register_styles' ] );
@@ -29,7 +29,7 @@ public function __construct() {
* Register styles.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*/
public function register_styles() {

4 changes: 2 additions & 2 deletions includes/class-algolia-utils.php
Original file line number Diff line number Diff line change
@@ -248,7 +248,7 @@ public static function explode_content( $content ) {
* Get the `$in_footer` argument for registering scripts.
*
* @author WebDevStudios <contact@webdevstudios.com>
* @since 1.5.0-dev
* @since 1.5.0
*
* @return bool
*/
@@ -257,7 +257,7 @@ public static function get_scripts_in_footer_argument() {
* Filters the `$in_footer` argument to `wp_register_script()` for Algolia Scripts.
*
* @since 1.3.0
* @since 1.5.0-dev The default changed from 'false' to 'true'.
* @since 1.5.0 The default changed from 'false' to 'true'.
*
* @param bool $in_footer Whether to enqueue the script before </body> instead of in the <head>. Default 'true'.
*/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-search-with-algolia",
"version": "1.5.0-dev",
"version": "1.5.0",
"description": "Integrate the powerful Algolia search service with WordPress.",
"author": "WebDevStudios",
"license": "GPL-3.0",

0 comments on commit cee0d02

Please sign in to comment.