Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmeshtatva committed Jan 30, 2018
1 parent 622ef87 commit 6bc2005
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 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: 4.9
Stable tag: 1.0.0
Stable tag: 1.0.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.0.1 =
* Some bug fixing & Improvements

= 1.0.0 =
* Initial Version.
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.0
* Version: 1.0.1
* 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.0.0' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.0.1' ); }

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


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

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

// Plugin folder Path.
Expand Down

0 comments on commit 6bc2005

Please sign in to comment.