1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Bump to 4.5.4

This commit is contained in:
Максим Кузнецов 2023-03-02 12:22:33 +03:00
parent fd6ad9f64a
commit 9027432b28
7 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,6 @@
## 2023-03-01 4.5.4
* Fix bug with creating orders with empty address
## 2022-12-26 4.5.3
* Fix bug with products tax

View file

@ -1 +1 @@
4.5.3
4.5.4

View file

@ -1006,7 +1006,7 @@ if (!class_exists('WC_Retailcrm_History')) :
/**
* Returns data for address_1 and address_2(if exist data for this field) for WC order.
*
* @param string $addressLine|null
* @param string|null $addressLine This address line will be split if it is needed
*
* @return mixed
*/

View file

@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.0
Requires at least: 5.3
Tested up to: 6.0
Stable tag: 4.5.3
Stable tag: 4.5.4
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog ==
= 4.5.4 =
* Fix bug with creating orders with empty address
= 4.5.3 =
* Fix bug with products tax

View file

@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.5.3
* Version: 4.5.4
* Tested up to: 6.0
* WC requires at least: 5.4
* WC tested up to: 6.9

View file

@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.5.3
* @version 4.5.4
*
* @package RetailCRM
*/

View file

@ -57,7 +57,6 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
if (is_object($orderItem)) {
$this->assertEquals($product->get_id(), $orderItem->get_product()->get_id());
$this->assertEquals($product->get_id(), $orderItem->get_product()->get_id());
}
$this->assertNotEmpty($wcOrder->get_date_created());