From aa8b319f578ff9718087cd2f84aaa95c6765f32c Mon Sep 17 00:00:00 2001 From: Dallen Dalton Date: Tue, 20 Aug 2019 17:10:22 +0000 Subject: [PATCH] Version 3.0.2 --- CHANGELOG.md | 14 +++++++------- includes/class-wc-taxjar-integration.php | 2 +- readme.txt | 18 +++++++++--------- taxjar-woocommerce.php | 4 ++-- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48cc593c..e33b3afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,18 @@ # 3.0.2 (2019-08-20) -* Add hooks to allow setting of order level exemptions during tax calculation and order syncing -* Fix issue syncing refunds with zero quantity line items -* Fix refunds created while order processing not syncing when order completed -* Add fallback to billing address when shipping address is empty on sync -* Add filters to allow altering currency and country validation before syncing -* Add filters to allow altering of request data before syncing orders and refunds * Added transaction sync order push to TaxJar * Added customer sync to TaxJar * Full support for product exemptions * Full support for customer exemptions -* Fix local pickup expected tax reports mismatch in TaxJar * Full support for partial refunds * Full support for fees in tax reporting in TaxJar +* Fix issue syncing refunds with zero quantity line items +* Fix refunds created while order processing not syncing when order completed +* Fix local pickup expected tax reports mismatch in TaxJar * Fix expected tax mismatch when order contains gift card in TaxJar reports +* Add fallback to billing address when shipping address is empty on sync +* Add filters to allow altering currency and country validation before syncing +* Add filters to allow altering of request data before syncing orders and refunds +* Add hooks to allow setting of order level exemptions during tax calculation and order syncing # 2.3.1 (2019-08-12) * Tested up to WooCommerce 3.7 diff --git a/includes/class-wc-taxjar-integration.php b/includes/class-wc-taxjar-integration.php index 32ca1b83..63c58e9a 100644 --- a/includes/class-wc-taxjar-integration.php +++ b/includes/class-wc-taxjar-integration.php @@ -37,7 +37,7 @@ public function __construct() { $this->integration_uri = $this->app_uri . 'account/apps/add/woo'; $this->regions_uri = $this->app_uri . 'account#states'; $this->uri = 'https://api.taxjar.com/v2/'; - $this->ua = 'TaxJarWordPressPlugin/3.0.1/WordPress/' . get_bloginfo( 'version' ) . '+WooCommerce/' . WC()->version . '; ' . get_bloginfo( 'url' ); + $this->ua = 'TaxJarWordPressPlugin/3.0.2/WordPress/' . get_bloginfo( 'version' ) . '+WooCommerce/' . WC()->version . '; ' . get_bloginfo( 'url' ); $this->debug = filter_var( $this->get_option( 'debug' ), FILTER_VALIDATE_BOOLEAN ); $this->download_orders = new WC_Taxjar_Download_Orders( $this ); $this->transaction_sync = new WC_Taxjar_Transaction_Sync( $this ); diff --git a/readme.txt b/readme.txt index 7c2c223f..f0102071 100755 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: taxjar, tonkapark, fastdivision Tags: woocommerce, taxjar, tax, taxes, sales tax, tax calculation, sales tax compliance, sales tax filing Requires at least: 4.2 -Tested up to: 5.1.2 -Stable tag: 3.0.1 +Tested up to: 5.2.2 +Stable tag: 3.0.2 License: GPLv2 or later URI: http://www.gnu.org/licenses/gpl-2.0.html WC requires at least: 3.0.0 @@ -92,20 +92,20 @@ Yes. The fee is $19.95 per state, per filing. == Changelog == = 3.0.2 (2019-08-20) -* Add hooks to allow setting of order level exemptions during tax calculation and order syncing -* Fix issue syncing refunds with zero quantity line items -* Fix refunds created while order processing not syncing when order completed -* Add fallback to billing address when shipping address is empty on sync -* Add filters to allow altering currency and country validation before syncing -* Add filters to allow altering of request data before syncing orders and refunds * Added transaction sync order push to TaxJar * Added customer sync to TaxJar * Full support for product exemptions * Full support for customer exemptions -* Fix local pickup expected tax reports mismatch in TaxJar * Full support for partial refunds * Full support for fees in tax reporting in TaxJar +* Fix issue syncing refunds with zero quantity line items +* Fix refunds created while order processing not syncing when order completed +* Fix local pickup expected tax reports mismatch in TaxJar * Fix expected tax mismatch when order contains gift card in TaxJar reports +* Add fallback to billing address when shipping address is empty on sync +* Add filters to allow altering currency and country validation before syncing +* Add filters to allow altering of request data before syncing orders and refunds +* Add hooks to allow setting of order level exemptions during tax calculation and order syncing = 2.3.1 (2019-08-12) * Tested up to WooCommerce 3.7 diff --git a/taxjar-woocommerce.php b/taxjar-woocommerce.php index 64a635b5..78c70ca0 100755 --- a/taxjar-woocommerce.php +++ b/taxjar-woocommerce.php @@ -3,7 +3,7 @@ * Plugin Name: TaxJar - Sales Tax Automation for WooCommerce (Beta) * Plugin URI: https://www.taxjar.com/woocommerce-sales-tax-plugin/ * Description: Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, collection, and filing. - * Version: 3.0.1 + * Version: 3.0.2 * Author: TaxJar * Author URI: https://www.taxjar.com * WC requires at least: 3.0.0 @@ -42,7 +42,7 @@ */ final class WC_Taxjar { - static $version = '3.0.0'; + static $version = '3.0.2'; public static $minimum_woocommerce_version = '3.0.0'; /**