Skip to content

Commit

Permalink
Bumping version to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdharmesh committed Jun 28, 2018
1 parent ef331d0 commit f8f4066
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 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.1.0
Stable tag: 1.1.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.1.1 =
* IMPROVEMENT: Some Improvements
* FIXED: some bug fixes.

= 1.1.0 =
* ADDED: Featured image by URL for Product variation
* IMPROVEMENT: UI improvements in Product Gallery by URLs
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.0
* Version: 1.1.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.1.0' ); }
public function __clone() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.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.1.0' ); }
public function __wakeup() { _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'featured-image-by-url' ), '1.1.1' ); }


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

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

// Plugin folder Path.
Expand Down

0 comments on commit f8f4066

Please sign in to comment.