Skip to content

Commit

Permalink
Bumped version to v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Jan 31, 2019
1 parent dee054a commit 0e1e2b7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: featured image, url, image url, image, woocommerce, remote featured image,
Requires PHP: 5.3
Requires at least: 4.0
Tested up to: 5.0
Stable tag: 1.1.2
Stable tag: 1.1.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -63,6 +63,11 @@ Featured Image by URL allows to use an external URL Images as Featured Image for

== Changelog ==

= 1.1.3 =
* ADDED: Support for WooCommerce Product Structured Data.
* ADDED: Support for "Facebook for WooCommerce" plugin
* ADDED: Support for Shopz.io WC GraphQL plugin

= 1.1.2 =
* ADDED: Support for WooCommerce v3.5 and later versions
* ADDED: Support for Guternberg (WP 5.0)
Expand Down
8 changes: 4 additions & 4 deletions featured-image-by-url.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Featured Image by URL
* Plugin URI: https://wordpress.org/plugins/featured-image-by-url/
* Description: This plugin allows to use an external URL Images as Featured Image for your post types. Includes support for Product Gallery (WooCommece).
* Version: 1.1.2
* Version: 1.1.3
* Author: Knawat Team
* Author URI: https://github.com/Knawat
* License: GPL-2.0+
Expand Down Expand Up @@ -76,14 +76,14 @@ private function __construct() { /* Do nothing here */ }
*
* @since 1.0.0
*/
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.2' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.3' ); }

/**
* A dummy magic method to prevent Featured_Image_By_URL from being unserialized.
*
* @since 1.0.0
*/
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.2' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.3' ); }


/**
Expand All @@ -97,7 +97,7 @@ private function setup_constants() {

// Plugin version.
if( ! defined( 'KNAWATFIBU_VERSION' ) ){
define( 'KNAWATFIBU_VERSION', '1.1.2' );
define( 'KNAWATFIBU_VERSION', '1.1.3' );
}

// Plugin folder Path.
Expand Down

0 comments on commit 0e1e2b7

Please sign in to comment.