Skip to content

Commit

Permalink
Version 3.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dallendalton committed Jan 6, 2020
1 parent 8b66afb commit 5c5d171
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.0.12 (2020-01-06)
* Update supported WooCommerce version to 3.9.0
* Add filter to disable date validation on transaction sync

# 3.0.11 (2019-11-25)
* Fix Action Scheduler load order
* Update WooCommerce supported version to 3.8.0
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 @@ -37,7 +37,7 @@ public function __construct() {
$this->integration_uri = $this->app_uri . 'account/apps/add/woo';
$this->regions_uri = $this->app_uri . 'account#states';
$this->uri = 'https://api.taxjar.com/v2/';
$this->ua = 'TaxJarWordPressPlugin/3.0.11/WordPress/' . get_bloginfo( 'version' ) . '+WooCommerce/' . WC()->version . '; ' . get_bloginfo( 'url' );
$this->ua = 'TaxJarWordPressPlugin/3.0.12/WordPress/' . get_bloginfo( 'version' ) . '+WooCommerce/' . WC()->version . '; ' . get_bloginfo( 'url' );
$this->debug = filter_var( $this->get_option( 'debug' ), FILTER_VALIDATE_BOOLEAN );
$this->download_orders = new WC_Taxjar_Download_Orders( $this );
$this->transaction_sync = new WC_Taxjar_Transaction_Sync( $this );
Expand Down
10 changes: 7 additions & 3 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: 4.2
Tested up to: 5.2.2
Stable tag: 3.0.11
Tested up to: 5.3.2
Stable tag: 3.0.12
License: GPLv2 or later
URI: http://www.gnu.org/licenses/gpl-2.0.html
WC requires at least: 3.0.0
WC tested up to: 3.8.0
WC tested up to: 3.9.0

Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculations, reporting, and filing.

Expand Down Expand Up @@ -91,6 +91,10 @@ Yes. The fee is $19.95 per state, per filing.

== Changelog ==

= 3.0.12 (2020-01-06)
* Update supported WooCommerce version to 3.9.0
* Add filter to disable date validation on transaction sync

= 3.0.11 (2019-11-25)
* Fix Action Scheduler load order
* Update WooCommerce supported version to 3.8.0
Expand Down
6 changes: 3 additions & 3 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.0.11
* Version: 3.0.12
* Author: TaxJar
* Author URI: https://www.taxjar.com
* WC requires at least: 3.0.0
* WC tested up to: 3.8.0
* WC tested up to: 3.9.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,7 +42,7 @@
*/
final class WC_Taxjar {

static $version = '3.0.11';
static $version = '3.0.12';
public static $minimum_woocommerce_version = '3.0.0';

/**
Expand Down

0 comments on commit 5c5d171

Please sign in to comment.