Skip to content

Commit

Permalink
Bumped version to v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Feb 27, 2018
1 parent cc4564e commit 2834fec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions 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: 4.9
Stable tag: 1.0.1
Stable tag: 1.0.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -13,7 +13,7 @@ Featured Image by URL allows to use an external URL Images as Featured Image for
== Description ==
<h3>Featured Image by URL :</h3>

Featured Image by URL allows to use an external URL Images as Featured Image for your post, page & custom post types like WooCommerce Product. Includes support for Product Gallery (WooCommerce).
Featured Image by URL allows to use an external URL Images as Featured Image for your post, page & custom post types like WooCommerce Product. Includes support for Product Gallery (WooCommerce). So, using this plugin you can easily set featured image from url.

<h3>Features:</h3>

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

== Changelog ==

= 1.0.2 =
* Added support for WooCommece v3.3.2 and above

= 1.0.1 =
* Some bug fixing & Improvements

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.0.1
* Version: 1.0.2
* 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&#8217; huh?', 'featured-image-by-url' ), '1.0.1' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'featured-image-by-url' ), '1.0.2' ); }

/**
* 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&#8217; huh?', 'featured-image-by-url' ), '1.0.1' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'featured-image-by-url' ), '1.0.2' ); }


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

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

// Plugin folder Path.
Expand Down

0 comments on commit 2834fec

Please sign in to comment.