Skip to content

Commit

Permalink
Version 3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton committed Mar 23, 2021
1 parent 5d76ced commit 4733a23
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.2.6 (2021-03-23)
* WooCommerce 5.1.0 Support
* Fix double subscription tax display issue
* Move calculation functions and settings functions into separate classes

# 3.2.5 (2021-01-28)
* Prevent tax calculation for orders with $0 total
* Add x-api-version header to TaxJar API requests
Expand Down
13 changes: 9 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
==== TaxJar - Sales Tax Automation for WooCommerce ====
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.6.0
Stable tag: 3.2.5
Requires at least: 5.3
Tested up to: 5.7.0
Stable tag: 3.2.6
License: GPLv2 or later
URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 4.3.0
WC requires at least: 4.6.0
WC tested up to: 4.9.2

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,11 @@ Our plans come with filings included, with additional filings available for purc

== Changelog ==

= 3.2.6 (2021-03-23)
* WooCommerce 5.1.0 Support
* Fix double subscription tax display issue
* Move calculation functions and settings functions into separate classes

= 3.2.5 (2021-01-28)
* Prevent tax calculation for orders with $0 total
* Add x-api-version header to TaxJar API requests
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.5
* Version: 3.2.6
* Author: TaxJar
* Author URI: https://www.taxjar.com
* WC requires at least: 4.3.0
* WC tested up to: 4.9.2
* WC requires at least: 4.6.0
* WC tested up to: 5.1.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.5';
public static $minimum_woocommerce_version = '4.3.0';
static $version = '3.2.6';
public static $minimum_woocommerce_version = '4.6.0';

/**
* Construct the plugin.
Expand Down

0 comments on commit 4733a23

Please sign in to comment.