Skip to content

Commit

Permalink
Version 3.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton committed May 27, 2021
1 parent f95b8df commit 78dbda3
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# 3.2.8 (2021-05-27)
* Fix tax calculation issues on fee only orders when created in admin dashboard or through Woo REST API.
* Fix tax calculation on orders with only shipping in admin dashboard or when created through Woo REST API.
* Fix incorrect tax rate application on orders with multiple line items using the same product tax code when different rates should be applied to each item.
* Fix issue where during order tax calculation, incorrect shipping tax may have been applied.
* Support tax classes on fees for order tax calculation.
* Fix issues with tax calculation of subscription orders created through the Woo REST API.
* Fix VAT exemption not applying on orders created through the admin dashboard or through the Woo REST API.
* Fix fallback to billing address if shipping address not present on an order in the admin dashboard.
* Fix issue where customer exemptions weren't being applied to a subscription order in the admin dashboard.
* Fix issue where changing a customer on an order in the admin dashboard may not have applied the exemption of the newly selected customer.
* Improve logging for order tax calculation.
* Add unit and integration tests to cover order tax calculation.
* WooCommerce 5.3.0 support

# 3.2.7 (2021-04-29)
* WooCommerce 5.2.2 Support
* Remove Action Scheduler Library
Expand Down
23 changes: 19 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
Contributors: taxjar, tonkapark, fastdivision
Tags: woocommerce, taxjar, tax, taxes, sales tax, tax calculation, sales tax compliance, sales tax filing
Requires at least: 5.3
Tested up to: 5.7.1
Stable tag: 3.2.7
Tested up to: 5.7.2
Stable tag: 3.2.8
License: GPLv2 or later
URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 4.7.0
WC tested up to: 5.2.2
WC requires at least: 4.8.0
WC tested up to: 5.3.0

Trusted by more than 20,000 businesses, TaxJar’s award-winning solution makes it easy to automate sales tax reporting and filing, and determine economic nexus with a single click.

Expand Down Expand Up @@ -96,6 +96,21 @@ Our plans come with filings included, with additional filings available for purc

== Changelog ==

= 3.2.8 (2021-05-27)
* Fix tax calculation issues on fee only orders when created in admin dashboard or through Woo REST API.
* Fix tax calculation on orders with only shipping in admin dashboard or when created through Woo REST API.
* Fix incorrect tax rate application on orders with multiple line items using the same product tax code when different rates should be applied to each item.
* Fix issue where during order tax calculation, incorrect shipping tax may have been applied.
* Support tax classes on fees for order tax calculation.
* Fix issues with tax calculation of subscription orders created through the Woo REST API.
* Fix VAT exemption not applying on orders created through the admin dashboard or through the Woo REST API.
* Fix fallback to billing address if shipping address not present on an order in the admin dashboard.
* Fix issue where customer exemptions weren't being applied to a subscription order in the admin dashboard.
* Fix issue where changing a customer on an order in the admin dashboard may not have applied the exemption of the newly selected customer.
* Improve logging for order tax calculation.
* Add unit and integration tests to cover order tax calculation.
* WooCommerce 5.3.0 support

= 3.2.7 (2021-04-29)
* WooCommerce 5.2.2 Support
* Remove Action Scheduler Library
Expand Down
10 changes: 5 additions & 5 deletions taxjar-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* Plugin Name: TaxJar - Sales Tax Automation for WooCommerce
* 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.2.7
* Version: 3.2.8
* Author: TaxJar
* Author URI: https://www.taxjar.com
* WC requires at least: 4.7.0
* WC tested up to: 5.2.2
* WC requires at least: 4.8.0
* WC tested up to: 5.3.0
*
* Copyright: © 2014-2019 TaxJar. TaxJar is a trademark of TPS Unlimited, Inc.
* License: GNU General Public License v2.0 or later
Expand Down Expand Up @@ -42,8 +42,8 @@
*/
final class WC_Taxjar {

static $version = '3.2.7';
public static $minimum_woocommerce_version = '4.7.0';
static $version = '3.2.8';
public static $minimum_woocommerce_version = '4.8.0';

/**
* Construct the plugin.
Expand Down

0 comments on commit 78dbda3

Please sign in to comment.