Skip to content

Commit

Permalink
Version 4.1.1 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton authored Feb 15, 2022
1 parent add5579 commit 682b84d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# 4.1.1 (2022-02-15)
* Fix for issue where incorrect tax was applied on shipping when multiple shipping packages were selected
* Fix to add compatibility for WooCommerce Gift Card plugin
* Added feature to sync customer to TaxJar when created/updated through WooCommerce REST API
* Add feature to add customers to sync queue when created/updated through the Customer/Order/Coupon CSV Import Suite
* Add action after calculating cart totals
* WooCommerce tested up to 6.2
* Update minimum WooCommerce version to 5.7

# 4.1.0 (2022-01-19)
* Add order meta box to give details of calculation and sync statuses
* Remove usage of deprecated function is_ajax
* WooCommerce tested up to 6.1
* Update minimum WordPress version to 5.6
* Update minimum WooCommerce version to 5.6

# 4.0.2 (2021-12-20)
* Filter invalid PTCs before creating transactions in TaxJar.
Expand Down
15 changes: 12 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Contributors: taxjar, tonkapark, fastdivision
Tags: woocommerce, taxjar, tax, taxes, sales tax, tax calculation, sales tax compliance, sales tax filing
Requires at least: 5.4
Tested up to: 5.8.3
Stable tag: 4.1.0
Stable tag: 4.1.1
License: GPLv2 or later
URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 5.6.0
WC tested up to: 6.1.0
WC requires at least: 5.7.0
WC tested up to: 6.2.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 @@ -95,6 +95,15 @@ Our plans come with filings included, with additional filings available for purc

== Changelog ==

= 4.1.1 (2022-02-15)
* Fix for issue where incorrect tax was applied on shipping when multiple shipping packages were selected
* Fix to add compatibility for WooCommerce Gift Card plugin
* Added feature to sync customer to TaxJar when created/updated through WooCommerce REST API
* Add feature to add customers to sync queue when created/updated through the Customer/Order/Coupon CSV Import Suite
* Add action after calculating cart totals
* WooCommerce tested up to 6.2
* Update minimum WooCommerce version to 5.7

= 4.1.0 (2022-01-19)
* Add order meta box to give details of calculation and sync statuses
* Remove usage of deprecated function is_ajax
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: 4.1.0
* Version: 4.1.1
* Author: TaxJar
* Author URI: https://www.taxjar.com
* WC requires at least: 5.6.0
* WC tested up to: 6.1.0
* WC requires at least: 5.7.0
* WC tested up to: 6.2.0
* Requires PHP: 7.0
*
* Copyright: © 2014-2019 TaxJar. TaxJar is a trademark of TPS Unlimited, Inc.
Expand Down Expand Up @@ -43,8 +43,8 @@
*/
final class WC_Taxjar {

static $version = '4.1.0';
public static $minimum_woocommerce_version = '5.6.0';
static $version = '4.1.1';
public static $minimum_woocommerce_version = '5.7.0';

/**
* Construct the plugin.
Expand Down

0 comments on commit 682b84d

Please sign in to comment.