diff --git a/README.txt b/README.txt index c8dca97..b0979bc 100644 --- a/README.txt +++ b/README.txt @@ -3,8 +3,8 @@ Contributors: angelleye Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QGCKWPXUEKRPW Tags: woocommerce, paypal, paypal here, credit card, swipe, pos, point of sale Requires at least: 3.0.1 -Tested up to: 5.2.1 -Stable tag: 0.5.1 +Tested up to: 5.2.2 +Stable tag: 0.5.2 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -86,6 +86,9 @@ From here you can process it using credit card, PayPal invoice, cash, etc. just == Changelog == += 0.5.2 - 07.09.2019 = +* Tweak - Minor adjustment to PayPal API requests. + = 0.5.1 - 05.31.2019 = * Tweak - Updates WordPress and WooCommerce version compatibility. diff --git a/includes/class-woo-paypal-here.php b/includes/class-woo-paypal-here.php index 3c5c507..efc321e 100644 --- a/includes/class-woo-paypal-here.php +++ b/includes/class-woo-paypal-here.php @@ -57,7 +57,7 @@ public function __construct() { if (defined('WOO_PAYPAL_HERE_VERSION')) { $this->version = WOO_PAYPAL_HERE_VERSION; } else { - $this->version = '0.5.1'; + $this->version = '0.5.2'; } $this->plugin_name = 'woo-paypal-here'; $this->load_dependencies(); diff --git a/woo-paypal-here.php b/woo-paypal-here.php index c9273e5..f8d5166 100644 --- a/woo-paypal-here.php +++ b/woo-paypal-here.php @@ -9,16 +9,16 @@ * Plugin Name: PayPal Here for WooCommerce * Plugin URI: https://www.angelleye.com/woo-paypal-here * Description: Process WooCommerce orders with PayPal Here, or create new orders from the mobile app using WooCommerce data and sync the order back to WooCommerce. - * Version: 0.5.1 + * Version: 0.5.2 * Author: Angell EYE * Author URI: https://www.angelleye.com * License: GPL-3.0+ * License URI: http://www.gnu.org/licenses/gpl-3.0.txt * Text Domain: woo-paypal-here * Domain Path: /languages - * Tested up to: 5.2.1 + * Tested up to: 5.2.2 * WC requires at least: 3.0.0 - * WC tested up to: 3.6.4 + * WC tested up to: 3.6.5 */ // If this file is called directly, abort. @@ -26,7 +26,7 @@ die; } -define('WOO_PAYPAL_HERE_VERSION', '0.5.1'); +define('WOO_PAYPAL_HERE_VERSION', '0.5.2'); if (!defined('WOO_PAYPAL_HERE_PLUGIN_DIR')) { define('WOO_PAYPAL_HERE_PLUGIN_DIR', dirname(__FILE__)); }