Skip to content

Commit

Permalink
Version 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton committed Nov 10, 2021
1 parent 4d2e1ff commit e89b847
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 4.0.0 (2021-11-11)
* Refactor cart tax calculation to stop calculation events from triggering twice
* Fix issue with tax calculation on dynamically created products and variations
* Fix issue where in some cases fees did not use correct product tax codes during calculation
* Fix issue where multiple products with the same product tax and exemption thresholds may cause incorrect tax
* Update minimum WooCommerce version to 5.4
* WooCommerce tested up to version 5.9
* WordPress tested up to version 5.8.2

# 3.3.0 (2021-09-02)
* Fix php warning when store settings are not set
* Update minimum WordPress version to 5.4
Expand Down
16 changes: 12 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.4
Tested up to: 5.8
Stable tag: 3.3.0
Tested up to: 5.8.2
Stable tag: 4.0.0
License: GPLv2 or later
URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 5.1.0
WC tested up to: 5.6.0
WC requires at least: 5.4.0
WC tested up to: 5.9.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,14 @@ Our plans come with filings included, with additional filings available for purc

== Changelog ==

= 4.0.0 (2021-11-11)
* Refactor cart tax calculation to stop calculation events from triggering twice
* Fix issue with tax calculation on dynamically created products and variations
* Fix issue where in some cases fees did not use correct product tax codes during calculation
* Fix issue where multiple products with the same product tax and exemption thresholds may cause incorrect tax
* Update minimum WooCommerce version to 5.4
* WooCommerce tested up to version 5.9

= 3.3.0 (2021-09-02)
* Fix php warning when store settings are not set
* Update minimum WordPress version to 5.4
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.3.0
* Version: 4.0.0
* Author: TaxJar
* Author URI: https://www.taxjar.com
* WC requires at least: 5.1.0
* WC tested up to: 5.6.0
* WC requires at least: 5.4.0
* WC tested up to: 5.9.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 = '3.4.0';
public static $minimum_woocommerce_version = '5.1.0';
static $version = '4.0.0';
public static $minimum_woocommerce_version = '5.4.0';

/**
* Construct the plugin.
Expand Down

0 comments on commit e89b847

Please sign in to comment.