diff --git a/readme.txt b/readme.txt index ab06ca4..c140bd5 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i WordPress requires at least: 3.9.1 Tested up to: 4.5.1 WooCommerce requires at least: 2.5.0 -Stable tag: 1.5.1 +Stable tag: 1.5.2 Author URI: http://royho.me Plugin URI: https://wordpress.org/plugins/woocommerce-geolocation-based-products/ License: GPLv3 @@ -72,12 +72,14 @@ You can post a GitHub issue here https://github.com/roykho/woocommerce-geolocati == Upgrade Notice == -= 1.5.1 = -* Tweak - Performance. -* Add - Show/hide ability when using featured products shortcode. += 1.5.2 = +* Fixed - Test mode not working. == Changelog == += 1.5.2 | 06-28-2016 = +* Fixed - Test mode not working. + = 1.5.1 | 06-01-2016 = * Tweak - Performance. * Add - Show/hide ability when using featured products shortcode. diff --git a/woocommerce-geolocation-based-products.php b/woocommerce-geolocation-based-products.php index 7c3f8db..05b28f1 100644 --- a/woocommerce-geolocation-based-products.php +++ b/woocommerce-geolocation-based-products.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Geolocation Based Products * Plugin URI: https://wordpress.org/plugins/woocommerce-geolocation-based-products/ * Description: A WooCommerce plugin/extension that adds ability for your store to hide products based on visitors geolocation. - * Version: 1.5.1 + * Version: 1.5.2 * Author: Roy Ho * Author URI: http://royho.me * Text Domain: woocommerce-geolocation-based-products @@ -35,7 +35,7 @@ function wc_glbp_activation() { if ( ! get_option( 'wc_glbp_version' ) ) { delete_option( 'wc_geolocation_based_products_settings' ); - add_option( 'wc_glbp_version', '1.5.0', '', 'no' ); + add_option( 'wc_glbp_version', '1.5.2', '', 'no' ); } return true; @@ -59,7 +59,7 @@ class WC_Geolocation_Based_Products { public function __construct() { self::$_this = $this; - define( 'WC_GEOLOCATION_BASED_PRODUCTS_VERSION', '1.5.1' ); + define( 'WC_GEOLOCATION_BASED_PRODUCTS_VERSION', '1.5.2' ); add_action( 'init', array( $this, 'load_plugin_textdomain' ) );