Skip to content

Commit

Permalink
Changelog and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
roykho committed Jun 29, 2016
1 parent cedd154 commit 481082b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions woocommerce-geolocation-based-products.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand All @@ -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' ) );

Expand Down

0 comments on commit 481082b

Please sign in to comment.