Skip to content

Commit

Permalink
Version 4.1.2 (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton authored Mar 30, 2022
1 parent e1029f2 commit ac2a7c3
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion includes/class-taxjar-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public static function get_plugin_title_settings() {
self::get_section_end_setting(),
array(
'type' => 'title',
'desc' => '<strong>' . __( 'For the fastest help, please email', 'wc-taxjar' ) . ' <a href="mailto:[email protected]">[email protected]</a>. ' . __( "We'll get back to you within hours.", 'wc-taxjar' ),
'desc' => '<strong>' . __( 'For the fastest help, please email', 'wc-taxjar' ) . ' <a href="mailto:[email protected]">[email protected]</a>.',
),
self::get_section_end_setting(),
array(
Expand Down
2 changes: 1 addition & 1 deletion includes/class-wc-taxjar-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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!<br><br><b>For the fastest help, please email <a href="mailto:[email protected]">[email protected]</a>. We\'ll get back to you within hours.</b>', '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!<br><br><b>For the fastest help, please email <a href="mailto:[email protected]">[email protected]</a>.</b>', '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 );
Expand Down
14 changes: 10 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.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.

Expand Down Expand Up @@ -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
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.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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit ac2a7c3

Please sign in to comment.