diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c1d1eb..126746f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 4.1.2 (2022-03-30) +* Fix for precision issue when syncing some orders to TaxJar +* Fix for persisting inaccurate rates in rates table +* WooCommerce tested up to 6.3 +* Update minimum WooCommerce version to 5.8 + # 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 diff --git a/includes/class-taxjar-settings.php b/includes/class-taxjar-settings.php index a101115..9277f40 100644 --- a/includes/class-taxjar-settings.php +++ b/includes/class-taxjar-settings.php @@ -468,7 +468,7 @@ public static function get_plugin_title_settings() { self::get_section_end_setting(), array( 'type' => 'title', - 'desc' => '' . __( 'For the fastest help, please email', 'wc-taxjar' ) . ' support@taxjar.com. ' . __( "We'll get back to you within hours.", 'wc-taxjar' ), + 'desc' => '' . __( 'For the fastest help, please email', 'wc-taxjar' ) . ' support@taxjar.com.', ), self::get_section_end_setting(), array( diff --git a/includes/class-wc-taxjar-integration.php b/includes/class-wc-taxjar-integration.php index e289323..55f1fec 100644 --- a/includes/class-wc-taxjar-integration.php +++ b/includes/class-wc-taxjar-integration.php @@ -34,7 +34,7 @@ public static function instance() { public function __construct() { $this->id = 'taxjar-integration'; $this->method_title = __( 'TaxJar', 'wc-taxjar' ); - $this->method_description = apply_filters( 'taxjar_method_description', __( 'TaxJar is the easiest to use sales tax calculation and reporting engine for WooCommerce. Connect your TaxJar account and enter the city and zip code from which your store ships. Enable TaxJar calculations to automatically collect sales tax at checkout. You may also enable sales tax reporting to begin importing transactions from this store into your TaxJar account, all in one click!

For the fastest help, please email support@taxjar.com. We\'ll get back to you within hours.', 'wc-taxjar' ) ); + $this->method_description = apply_filters( 'taxjar_method_description', __( 'TaxJar is the easiest to use sales tax calculation and reporting engine for WooCommerce. Connect your TaxJar account and enter the city and zip code from which your store ships. Enable TaxJar calculations to automatically collect sales tax at checkout. You may also enable sales tax reporting to begin importing transactions from this store into your TaxJar account, all in one click!

For the fastest help, please email support@taxjar.com.', 'wc-taxjar' ) ); $this->integration_uri = self::$app_uri . 'account/apps/add/woo'; $this->debug = filter_var( $this->get_option( 'debug' ), FILTER_VALIDATE_BOOLEAN ); $this->download_orders = new WC_Taxjar_Download_Orders( $this ); diff --git a/readme.txt b/readme.txt index 22c82f9..0731b4c 100755 --- a/readme.txt +++ b/readme.txt @@ -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.3 -Stable tag: 4.1.1 +Tested up to: 5.9.2 +Stable tag: 4.1.2 License: GPLv2 or later URI: http://www.gnu.org/licenses/gpl-2.0.html -WC requires at least: 5.7.0 -WC tested up to: 6.2.0 +WC requires at least: 5.8.0 +WC tested up to: 6.3.1 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. @@ -95,6 +95,12 @@ Our plans come with filings included, with additional filings available for purc == Changelog == += 4.1.2 (2022-03-30) +* Fix for precision issue when syncing some orders to TaxJar +* Fix for persisting inaccurate rates in rates table +* WooCommerce tested up to 6.3 +* Update minimum WooCommerce version to 5.8 + = 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 diff --git a/taxjar-woocommerce.php b/taxjar-woocommerce.php index 2737ded..41e002f 100755 --- a/taxjar-woocommerce.php +++ b/taxjar-woocommerce.php @@ -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.1 + * Version: 4.1.2 * Author: TaxJar * Author URI: https://www.taxjar.com - * WC requires at least: 5.7.0 - * WC tested up to: 6.2.0 + * WC requires at least: 5.8.0 + * WC tested up to: 6.3.1 * Requires PHP: 7.0 * * Copyright: © 2014-2019 TaxJar. TaxJar is a trademark of TPS Unlimited, Inc. @@ -43,8 +43,8 @@ */ final class WC_Taxjar { - static $version = '4.1.1'; - public static $minimum_woocommerce_version = '5.7.0'; + static $version = '4.1.2'; + public static $minimum_woocommerce_version = '5.8.0'; /** * Construct the plugin.